How do i print emoji in python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do i print emoji in python?

\U0001f600 didn't work

8th May 2019, 5:49 AM
Jyotsana
4 Answers
+ 2
Jyotsana import sys,codecs sys.stdout = codecs.getwriter('utf_16')(sys.stdout.buffer,'strict') print(chr(0x1f913)) print('\U0001f600') print('🤓')
8th May 2019, 6:55 AM
Daljeet Singh
Daljeet Singh - avatar
+ 1
Thank you 😊
8th May 2019, 7:26 AM
Jyotsana
0
Ñójddd..
19th May 2019, 11:44 PM
Cens Quince
Cens Quince - avatar