list of emoji in python

To list all the available emojis in Python, you can use the emoji package which can be installed via pip. You can use the emojize function of this package to convert emoji codes to their corresponding Unicode characters. Here's an example code that lists 10 commonly used emojis:

main.py
import emoji

# list of commonly used emojis
emojis = [':thumbs_up:', ':face_with_tears_of_joy:', ':red_heart:', ':fire:', ':smiling_face_with_heart-eyes:', ':folded_hands:', ':sparkles:', ':loudly_crying_face:', ':smiling_face_with_smiling_eyes:', ':smiling_face_with_sunglasses:']

for e in emojis:
    print(emoji.emojize(e))
329 chars
8 lines

This will output the Unicode characters for the given emojis:

šŸ‘šŸ˜‚ā¤ļøšŸ”„šŸ˜šŸ™āœØšŸ˜­šŸ˜ŠšŸ˜Ž

You can add or remove emojis to the emojis list to display the Unicode characters for different emojis.

gistlibby LogSnag