without haste but without rest
[python] 파이썬 이모지 보내기 본문
https://apps.timwhitlock.info/emoji/tables/unicode
위 링크 타고 들어가면 이모지마다 유니코드가 있다.
예를들어 U+1F601 이런 형태인데
파이썬에서 사용하려면 "\U0001F601" 같이 변경해주면 된다.
sample
smile = "\U0001F601"
angry = "\U0001F621"
'ProgrammingLanguage > Python' 카테고리의 다른 글
[python] xor 연산자 ^= (0) | 2021.07.07 |
---|---|
[python] 다중 조건으로 정렬하기 - lambda (0) | 2021.06.24 |
슬랙 API 메세지 전송 템플릿 - python (0) | 2021.06.11 |
[python] csv 헤더 패스하기 (0) | 2021.05.11 |
[python] 날짜 계산 (0) | 2021.05.06 |
Comments