without haste but without rest

[python] 파이썬 이모지 보내기 본문

ProgrammingLanguage/Python

[python] 파이썬 이모지 보내기

JinungKim 2021. 6. 23. 15:16

https://apps.timwhitlock.info/emoji/tables/unicode

 

Emoji unicode characters for use on the web

Emoji code points and example glyphs using web fonts, sprites and native OS representation of Emoji characters

apps.timwhitlock.info


위 링크 타고 들어가면 이모지마다 유니코드가 있다.

예를들어 U+1F601 이런 형태인데 

파이썬에서 사용하려면 "\U0001F601" 같이 변경해주면 된다.

 

sample

smile = "\U0001F601"
angry = "\U0001F621"

 

 

Comments