Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python emojis

# https://unicode.org/emoji/charts-14.0/full-emoji-list.html

# Emoji unicodes
# unicode grinning face
print("U0001f600")
# unicode grinning squinting face
print("U0001F606")
# unicode rolling on the floor laughing
print("U0001F923")

# CLDR short names emojis
# smiling face with sunglasses
print("N{smiling face with sunglasses}", end='')
# grinning face
print("N{grinning face}", end='')
# loudly crying face
print("N{loudly crying face}", end='')
# rolling on the floor laughing
print("N{rolling on the floor laughing}", end='')
# face with tears of joy
print("N{face with tears of joy}", end='')
# slightly smiling face
print("N{slightly smiling face}", end='')
# smiling face with halo
print("N{smiling face with halo}", end='')
# angry face
print("N{angry face}", end='')
# zipper-mouth face
print("N{zipper-mouth face}", end='')
# unamused face
print("N{unamused face}", end='')
Source by codefreelance.net #
 
PREVIOUS NEXT
Tagged: #python #emojis
ADD COMMENT
Topic
Name
7+3 =