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.py329 chars8 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