I've been trying to print emojis in Python, so I first tried the Unicode input with print("")
for example. It returned me this:
So I looked for another solution and saw the Emoji module, but this time it returned me this error:
====== RESTART: C:\Users\Zapdexio\Desktop\Emojis.py ======
Traceback (most recent call last):
File "C:\Users\Zapdexio\Desktop\Python\Tkinter\TestEmojis.pyw", line 2, in <module>
print(emoji.emojize('Python is :thumbs_up:'))
UnicodeEncodeError: 'UCS-2' codec can't encode characters in position 10-10: Non-BMP character not supported in Tk
The code was this one:
import emoji
print(emoji.emojize('Python is :thumbsup:', use_aliases=True))
Could someone help me please? ;-;