I have tried just including my emoji in a string in python like :
print('My emoji : ')
Instead of showing the emoji : on the screen, it showed :
My emoji: []
Next, I tried using the emoji module :
import emoji
crown = emoji.emojize(':crown:')
Print('My emoji : {}'.format(crown))
But even after using the emoji module, it still showed :
My emoji: []
I'm using a computer right now. Is there a way to get the Emoji to show properly, not just as []?