Python Emoji using Unicode or CLDR || Python
In this we are going to see a basic program to print emoji using unicode or CLDR in Python Programming Language.



unicode_cards = {"\u2665": "Heart", "\u2660": "Spade", "\u2666": "Diamond", "\u2663": "Club"}
unicode_emojis = {"\U0001F60D":"Smile With Hearts","\U0001F612":"Unamused","\U0001F602":"Joyful Tears"}
for key, value in unicode_cards.items():
    print(key, value)

for key, value in unicode_emojis.items():
    print(key, value)

# Coded By DHIRAJ SHELKE


#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post