Any emoji name finder
Welcome to emoji name finder
This is emoji name finder you give any emoji and get name of the emoji.
import demoji
# Test string with emojis
text_with_emojis = input("Paste your emoji : ")
# Find meanings of emojis
meanings = demoji.findall(text_with_emojis)
print(meanings)
Comments