Skip to content

Instantly share code, notes, and snippets.

@sandipchitale
Last active November 10, 2025 04:27
Show Gist options
  • Save sandipchitale/0359db25a7a348a2ea789d21ed5146fe to your computer and use it in GitHub Desktop.
Save sandipchitale/0359db25a7a348a2ea789d21ed5146fe to your computer and use it in GitHub Desktop.
All Emojis in java #java #emojis
import java.util.stream.IntStream;
import static java.lang.Character.getName;
import static java.lang.Character.toChars;
interface App {
record Emoji(int codePoint){
String name(){
return getName(codePoint).toLowerCase();
}
String emoji(){
return String.valueOf(toChars(codePoint));
}
public String toString(){
return "%s [ %6s ] -> %s".formatted(emoji(), codePoint(),name());
}
}
static void main(String... args) {
IntStream.range(0, Integer.MAX_VALUE)
.filter(Character::isEmoji)
.mapToObj(Emoji::new)
.forEach(System.out::println);
}
}
# [ 35 ] -> number sign
* [ 42 ] -> asterisk
0 [ 48 ] -> digit zero
1 [ 49 ] -> digit one
2 [ 50 ] -> digit two
3 [ 51 ] -> digit three
4 [ 52 ] -> digit four
5 [ 53 ] -> digit five
6 [ 54 ] -> digit six
7 [ 55 ] -> digit seven
8 [ 56 ] -> digit eight
9 [ 57 ] -> digit nine
© [ 169 ] -> copyright sign
® [ 174 ] -> registered sign
‼ [ 8252 ] -> double exclamation mark
⁉ [ 8265 ] -> exclamation question mark
™ [ 8482 ] -> trade mark sign
ℹ [ 8505 ] -> information source
↔ [ 8596 ] -> left right arrow
↕ [ 8597 ] -> up down arrow
↖ [ 8598 ] -> north west arrow
↗ [ 8599 ] -> north east arrow
↘ [ 8600 ] -> south east arrow
↙ [ 8601 ] -> south west arrow
↩ [ 8617 ] -> leftwards arrow with hook
↪ [ 8618 ] -> rightwards arrow with hook
⌚ [ 8986 ] -> watch
⌛ [ 8987 ] -> hourglass
⌨ [ 9000 ] -> keyboard
⏏ [ 9167 ] -> eject symbol
⏩ [ 9193 ] -> black right-pointing double triangle
⏪ [ 9194 ] -> black left-pointing double triangle
⏫ [ 9195 ] -> black up-pointing double triangle
⏬ [ 9196 ] -> black down-pointing double triangle
⏭ [ 9197 ] -> black right-pointing double triangle with vertical bar
⏮ [ 9198 ] -> black left-pointing double triangle with vertical bar
⏯ [ 9199 ] -> black right-pointing triangle with double vertical bar
⏰ [ 9200 ] -> alarm clock
⏱ [ 9201 ] -> stopwatch
⏲ [ 9202 ] -> timer clock
⏳ [ 9203 ] -> hourglass with flowing sand
⏸ [ 9208 ] -> double vertical bar
⏹ [ 9209 ] -> black square for stop
⏺ [ 9210 ] -> black circle for record
Ⓜ [ 9410 ] -> circled latin capital letter m
▪ [ 9642 ] -> black small square
▫ [ 9643 ] -> white small square
▶ [ 9654 ] -> black right-pointing triangle
◀ [ 9664 ] -> black left-pointing triangle
◻ [ 9723 ] -> white medium square
◼ [ 9724 ] -> black medium square
◽ [ 9725 ] -> white medium small square
◾ [ 9726 ] -> black medium small square
☀ [ 9728 ] -> black sun with rays
☁ [ 9729 ] -> cloud
☂ [ 9730 ] -> umbrella
☃ [ 9731 ] -> snowman
☄ [ 9732 ] -> comet
☎ [ 9742 ] -> black telephone
☑ [ 9745 ] -> ballot box with check
☔ [ 9748 ] -> umbrella with rain drops
☕ [ 9749 ] -> hot beverage
☘ [ 9752 ] -> shamrock
☝ [ 9757 ] -> white up pointing index
☠ [ 9760 ] -> skull and crossbones
☢ [ 9762 ] -> radioactive sign
☣ [ 9763 ] -> biohazard sign
☦ [ 9766 ] -> orthodox cross
☪ [ 9770 ] -> star and crescent
☮ [ 9774 ] -> peace symbol
☯ [ 9775 ] -> yin yang
☸ [ 9784 ] -> wheel of dharma
☹ [ 9785 ] -> white frowning face
☺ [ 9786 ] -> white smiling face
♀ [ 9792 ] -> female sign
♂ [ 9794 ] -> male sign
♈ [ 9800 ] -> aries
♉ [ 9801 ] -> taurus
♊ [ 9802 ] -> gemini
♋ [ 9803 ] -> cancer
♌ [ 9804 ] -> leo
♍ [ 9805 ] -> virgo
♎ [ 9806 ] -> libra
♏ [ 9807 ] -> scorpius
♐ [ 9808 ] -> sagittarius
♑ [ 9809 ] -> capricorn
♒ [ 9810 ] -> aquarius
♓ [ 9811 ] -> pisces
♟ [ 9823 ] -> black chess pawn
♠ [ 9824 ] -> black spade suit
♣ [ 9827 ] -> black club suit
♥ [ 9829 ] -> black heart suit
♦ [ 9830 ] -> black diamond suit
♨ [ 9832 ] -> hot springs
♻ [ 9851 ] -> black universal recycling symbol
♾ [ 9854 ] -> permanent paper sign
♿ [ 9855 ] -> wheelchair symbol
⚒ [ 9874 ] -> hammer and pick
⚓ [ 9875 ] -> anchor
⚔ [ 9876 ] -> crossed swords
⚕ [ 9877 ] -> staff of aesculapius
⚖ [ 9878 ] -> scales
⚗ [ 9879 ] -> alembic
⚙ [ 9881 ] -> gear
⚛ [ 9883 ] -> atom symbol
⚜ [ 9884 ] -> fleur-de-lis
⚠ [ 9888 ] -> warning sign
⚡ [ 9889 ] -> high voltage sign
⚧ [ 9895 ] -> male with stroke and male and female sign
⚪ [ 9898 ] -> medium white circle
⚫ [ 9899 ] -> medium black circle
⚰ [ 9904 ] -> coffin
⚱ [ 9905 ] -> funeral urn
⚽ [ 9917 ] -> soccer ball
⚾ [ 9918 ] -> baseball
⛄ [ 9924 ] -> snowman without snow
⛅ [ 9925 ] -> sun behind cloud
⛈ [ 9928 ] -> thunder cloud and rain
⛎ [ 9934 ] -> ophiuchus
⛏ [ 9935 ] -> pick
⛑ [ 9937 ] -> helmet with white cross
⛓ [ 9939 ] -> chains
⛔ [ 9940 ] -> no entry
⛩ [ 9961 ] -> shinto shrine
⛪ [ 9962 ] -> church
⛰ [ 9968 ] -> mountain
⛱ [ 9969 ] -> umbrella on ground
⛲ [ 9970 ] -> fountain
⛳ [ 9971 ] -> flag in hole
⛴ [ 9972 ] -> ferry
⛵ [ 9973 ] -> sailboat
⛷ [ 9975 ] -> skier
⛸ [ 9976 ] -> ice skate
⛹ [ 9977 ] -> person with ball
⛺ [ 9978 ] -> tent
⛽ [ 9981 ] -> fuel pump
✂ [ 9986 ] -> black scissors
✅ [ 9989 ] -> white heavy check mark
✈ [ 9992 ] -> airplane
✉ [ 9993 ] -> envelope
✊ [ 9994 ] -> raised fist
✋ [ 9995 ] -> raised hand
✌ [ 9996 ] -> victory hand
✍ [ 9997 ] -> writing hand
✏ [ 9999 ] -> pencil
✒ [ 10002 ] -> black nib
✔ [ 10004 ] -> heavy check mark
✖ [ 10006 ] -> heavy multiplication x
✝ [ 10013 ] -> latin cross
✡ [ 10017 ] -> star of david
✨ [ 10024 ] -> sparkles
✳ [ 10035 ] -> eight spoked asterisk
✴ [ 10036 ] -> eight pointed black star
❄ [ 10052 ] -> snowflake
❇ [ 10055 ] -> sparkle
❌ [ 10060 ] -> cross mark
❎ [ 10062 ] -> negative squared cross mark
❓ [ 10067 ] -> black question mark ornament
❔ [ 10068 ] -> white question mark ornament
❕ [ 10069 ] -> white exclamation mark ornament
❗ [ 10071 ] -> heavy exclamation mark symbol
❣ [ 10083 ] -> heavy heart exclamation mark ornament
❤ [ 10084 ] -> heavy black heart
➕ [ 10133 ] -> heavy plus sign
➖ [ 10134 ] -> heavy minus sign
➗ [ 10135 ] -> heavy division sign
➡ [ 10145 ] -> black rightwards arrow
➰ [ 10160 ] -> curly loop
➿ [ 10175 ] -> double curly loop
⤴ [ 10548 ] -> arrow pointing rightwards then curving upwards
⤵ [ 10549 ] -> arrow pointing rightwards then curving downwards
⬅ [ 11013 ] -> leftwards black arrow
⬆ [ 11014 ] -> upwards black arrow
⬇ [ 11015 ] -> downwards black arrow
⬛ [ 11035 ] -> black large square
⬜ [ 11036 ] -> white large square
⭐ [ 11088 ] -> white medium star
⭕ [ 11093 ] -> heavy large circle
〰 [ 12336 ] -> wavy dash
〽 [ 12349 ] -> part alternation mark
㊗ [ 12951 ] -> circled ideograph congratulation
㊙ [ 12953 ] -> circled ideograph secret
🀄 [ 126980 ] -> mahjong tile red dragon
🃏 [ 127183 ] -> playing card black joker
🅰 [ 127344 ] -> negative squared latin capital letter a
🅱 [ 127345 ] -> negative squared latin capital letter b
🅾 [ 127358 ] -> negative squared latin capital letter o
🅿 [ 127359 ] -> negative squared latin capital letter p
🆎 [ 127374 ] -> negative squared ab
🆑 [ 127377 ] -> squared cl
🆒 [ 127378 ] -> squared cool
🆓 [ 127379 ] -> squared free
🆔 [ 127380 ] -> squared id
🆕 [ 127381 ] -> squared new
🆖 [ 127382 ] -> squared ng
🆗 [ 127383 ] -> squared ok
🆘 [ 127384 ] -> squared sos
🆙 [ 127385 ] -> squared up with exclamation mark
🆚 [ 127386 ] -> squared vs
🇦 [ 127462 ] -> regional indicator symbol letter a
🇧 [ 127463 ] -> regional indicator symbol letter b
🇨 [ 127464 ] -> regional indicator symbol letter c
🇩 [ 127465 ] -> regional indicator symbol letter d
🇪 [ 127466 ] -> regional indicator symbol letter e
🇫 [ 127467 ] -> regional indicator symbol letter f
🇬 [ 127468 ] -> regional indicator symbol letter g
🇭 [ 127469 ] -> regional indicator symbol letter h
🇮 [ 127470 ] -> regional indicator symbol letter i
🇯 [ 127471 ] -> regional indicator symbol letter j
🇰 [ 127472 ] -> regional indicator symbol letter k
🇱 [ 127473 ] -> regional indicator symbol letter l
🇲 [ 127474 ] -> regional indicator symbol letter m
🇳 [ 127475 ] -> regional indicator symbol letter n
🇴 [ 127476 ] -> regional indicator symbol letter o
🇵 [ 127477 ] -> regional indicator symbol letter p
🇶 [ 127478 ] -> regional indicator symbol letter q
🇷 [ 127479 ] -> regional indicator symbol letter r
🇸 [ 127480 ] -> regional indicator symbol letter s
🇹 [ 127481 ] -> regional indicator symbol letter t
🇺 [ 127482 ] -> regional indicator symbol letter u
🇻 [ 127483 ] -> regional indicator symbol letter v
🇼 [ 127484 ] -> regional indicator symbol letter w
🇽 [ 127485 ] -> regional indicator symbol letter x
🇾 [ 127486 ] -> regional indicator symbol letter y
🇿 [ 127487 ] -> regional indicator symbol letter z
🈁 [ 127489 ] -> squared katakana koko
🈂 [ 127490 ] -> squared katakana sa
🈚 [ 127514 ] -> squared cjk unified ideograph-7121
🈯 [ 127535 ] -> squared cjk unified ideograph-6307
🈲 [ 127538 ] -> squared cjk unified ideograph-7981
🈳 [ 127539 ] -> squared cjk unified ideograph-7a7a
🈴 [ 127540 ] -> squared cjk unified ideograph-5408
🈵 [ 127541 ] -> squared cjk unified ideograph-6e80
🈶 [ 127542 ] -> squared cjk unified ideograph-6709
🈷 [ 127543 ] -> squared cjk unified ideograph-6708
🈸 [ 127544 ] -> squared cjk unified ideograph-7533
🈹 [ 127545 ] -> squared cjk unified ideograph-5272
🈺 [ 127546 ] -> squared cjk unified ideograph-55b6
🉐 [ 127568 ] -> circled ideograph advantage
🉑 [ 127569 ] -> circled ideograph accept
🌀 [ 127744 ] -> cyclone
🌁 [ 127745 ] -> foggy
🌂 [ 127746 ] -> closed umbrella
🌃 [ 127747 ] -> night with stars
🌄 [ 127748 ] -> sunrise over mountains
🌅 [ 127749 ] -> sunrise
🌆 [ 127750 ] -> cityscape at dusk
🌇 [ 127751 ] -> sunset over buildings
🌈 [ 127752 ] -> rainbow
🌉 [ 127753 ] -> bridge at night
🌊 [ 127754 ] -> water wave
🌋 [ 127755 ] -> volcano
🌌 [ 127756 ] -> milky way
🌍 [ 127757 ] -> earth globe europe-africa
🌎 [ 127758 ] -> earth globe americas
🌏 [ 127759 ] -> earth globe asia-australia
🌐 [ 127760 ] -> globe with meridians
🌑 [ 127761 ] -> new moon symbol
🌒 [ 127762 ] -> waxing crescent moon symbol
🌓 [ 127763 ] -> first quarter moon symbol
🌔 [ 127764 ] -> waxing gibbous moon symbol
🌕 [ 127765 ] -> full moon symbol
🌖 [ 127766 ] -> waning gibbous moon symbol
🌗 [ 127767 ] -> last quarter moon symbol
🌘 [ 127768 ] -> waning crescent moon symbol
🌙 [ 127769 ] -> crescent moon
🌚 [ 127770 ] -> new moon with face
🌛 [ 127771 ] -> first quarter moon with face
🌜 [ 127772 ] -> last quarter moon with face
🌝 [ 127773 ] -> full moon with face
🌞 [ 127774 ] -> sun with face
🌟 [ 127775 ] -> glowing star
🌠 [ 127776 ] -> shooting star
🌡 [ 127777 ] -> thermometer
🌤 [ 127780 ] -> white sun with small cloud
🌥 [ 127781 ] -> white sun behind cloud
🌦 [ 127782 ] -> white sun behind cloud with rain
🌧 [ 127783 ] -> cloud with rain
🌨 [ 127784 ] -> cloud with snow
🌩 [ 127785 ] -> cloud with lightning
🌪 [ 127786 ] -> cloud with tornado
🌫 [ 127787 ] -> fog
🌬 [ 127788 ] -> wind blowing face
🌭 [ 127789 ] -> hot dog
🌮 [ 127790 ] -> taco
🌯 [ 127791 ] -> burrito
🌰 [ 127792 ] -> chestnut
🌱 [ 127793 ] -> seedling
🌲 [ 127794 ] -> evergreen tree
🌳 [ 127795 ] -> deciduous tree
🌴 [ 127796 ] -> palm tree
🌵 [ 127797 ] -> cactus
🌶 [ 127798 ] -> hot pepper
🌷 [ 127799 ] -> tulip
🌸 [ 127800 ] -> cherry blossom
🌹 [ 127801 ] -> rose
🌺 [ 127802 ] -> hibiscus
🌻 [ 127803 ] -> sunflower
🌼 [ 127804 ] -> blossom
🌽 [ 127805 ] -> ear of maize
🌾 [ 127806 ] -> ear of rice
🌿 [ 127807 ] -> herb
🍀 [ 127808 ] -> four leaf clover
🍁 [ 127809 ] -> maple leaf
🍂 [ 127810 ] -> fallen leaf
🍃 [ 127811 ] -> leaf fluttering in wind
🍄 [ 127812 ] -> mushroom
🍅 [ 127813 ] -> tomato
🍆 [ 127814 ] -> aubergine
🍇 [ 127815 ] -> grapes
🍈 [ 127816 ] -> melon
🍉 [ 127817 ] -> watermelon
🍊 [ 127818 ] -> tangerine
🍋 [ 127819 ] -> lemon
🍌 [ 127820 ] -> banana
🍍 [ 127821 ] -> pineapple
🍎 [ 127822 ] -> red apple
🍏 [ 127823 ] -> green apple
🍐 [ 127824 ] -> pear
🍑 [ 127825 ] -> peach
🍒 [ 127826 ] -> cherries
🍓 [ 127827 ] -> strawberry
🍔 [ 127828 ] -> hamburger
🍕 [ 127829 ] -> slice of pizza
🍖 [ 127830 ] -> meat on bone
🍗 [ 127831 ] -> poultry leg
🍘 [ 127832 ] -> rice cracker
🍙 [ 127833 ] -> rice ball
🍚 [ 127834 ] -> cooked rice
🍛 [ 127835 ] -> curry and rice
🍜 [ 127836 ] -> steaming bowl
🍝 [ 127837 ] -> spaghetti
🍞 [ 127838 ] -> bread
🍟 [ 127839 ] -> french fries
🍠 [ 127840 ] -> roasted sweet potato
🍡 [ 127841 ] -> dango
🍢 [ 127842 ] -> oden
🍣 [ 127843 ] -> sushi
🍤 [ 127844 ] -> fried shrimp
🍥 [ 127845 ] -> fish cake with swirl design
🍦 [ 127846 ] -> soft ice cream
🍧 [ 127847 ] -> shaved ice
🍨 [ 127848 ] -> ice cream
🍩 [ 127849 ] -> doughnut
🍪 [ 127850 ] -> cookie
🍫 [ 127851 ] -> chocolate bar
🍬 [ 127852 ] -> candy
🍭 [ 127853 ] -> lollipop
🍮 [ 127854 ] -> custard
🍯 [ 127855 ] -> honey pot
🍰 [ 127856 ] -> shortcake
🍱 [ 127857 ] -> bento box
🍲 [ 127858 ] -> pot of food
🍳 [ 127859 ] -> cooking
🍴 [ 127860 ] -> fork and knife
🍵 [ 127861 ] -> teacup without handle
🍶 [ 127862 ] -> sake bottle and cup
🍷 [ 127863 ] -> wine glass
🍸 [ 127864 ] -> cocktail glass
🍹 [ 127865 ] -> tropical drink
🍺 [ 127866 ] -> beer mug
🍻 [ 127867 ] -> clinking beer mugs
🍼 [ 127868 ] -> baby bottle
🍽 [ 127869 ] -> fork and knife with plate
🍾 [ 127870 ] -> bottle with popping cork
🍿 [ 127871 ] -> popcorn
🎀 [ 127872 ] -> ribbon
🎁 [ 127873 ] -> wrapped present
🎂 [ 127874 ] -> birthday cake
🎃 [ 127875 ] -> jack-o-lantern
🎄 [ 127876 ] -> christmas tree
🎅 [ 127877 ] -> father christmas
🎆 [ 127878 ] -> fireworks
🎇 [ 127879 ] -> firework sparkler
🎈 [ 127880 ] -> balloon
🎉 [ 127881 ] -> party popper
🎊 [ 127882 ] -> confetti ball
🎋 [ 127883 ] -> tanabata tree
🎌 [ 127884 ] -> crossed flags
🎍 [ 127885 ] -> pine decoration
🎎 [ 127886 ] -> japanese dolls
🎏 [ 127887 ] -> carp streamer
🎐 [ 127888 ] -> wind chime
🎑 [ 127889 ] -> moon viewing ceremony
🎒 [ 127890 ] -> school satchel
🎓 [ 127891 ] -> graduation cap
🎖 [ 127894 ] -> military medal
🎗 [ 127895 ] -> reminder ribbon
🎙 [ 127897 ] -> studio microphone
🎚 [ 127898 ] -> level slider
🎛 [ 127899 ] -> control knobs
🎞 [ 127902 ] -> film frames
🎟 [ 127903 ] -> admission tickets
🎠 [ 127904 ] -> carousel horse
🎡 [ 127905 ] -> ferris wheel
🎢 [ 127906 ] -> roller coaster
🎣 [ 127907 ] -> fishing pole and fish
🎤 [ 127908 ] -> microphone
🎥 [ 127909 ] -> movie camera
🎦 [ 127910 ] -> cinema
🎧 [ 127911 ] -> headphone
🎨 [ 127912 ] -> artist palette
🎩 [ 127913 ] -> top hat
🎪 [ 127914 ] -> circus tent
🎫 [ 127915 ] -> ticket
🎬 [ 127916 ] -> clapper board
🎭 [ 127917 ] -> performing arts
🎮 [ 127918 ] -> video game
🎯 [ 127919 ] -> direct hit
🎰 [ 127920 ] -> slot machine
🎱 [ 127921 ] -> billiards
🎲 [ 127922 ] -> game die
🎳 [ 127923 ] -> bowling
🎴 [ 127924 ] -> flower playing cards
🎵 [ 127925 ] -> musical note
🎶 [ 127926 ] -> multiple musical notes
🎷 [ 127927 ] -> saxophone
🎸 [ 127928 ] -> guitar
🎹 [ 127929 ] -> musical keyboard
🎺 [ 127930 ] -> trumpet
🎻 [ 127931 ] -> violin
🎼 [ 127932 ] -> musical score
🎽 [ 127933 ] -> running shirt with sash
🎾 [ 127934 ] -> tennis racquet and ball
🎿 [ 127935 ] -> ski and ski boot
🏀 [ 127936 ] -> basketball and hoop
🏁 [ 127937 ] -> chequered flag
🏂 [ 127938 ] -> snowboarder
🏃 [ 127939 ] -> runner
🏄 [ 127940 ] -> surfer
🏅 [ 127941 ] -> sports medal
🏆 [ 127942 ] -> trophy
🏇 [ 127943 ] -> horse racing
🏈 [ 127944 ] -> american football
🏉 [ 127945 ] -> rugby football
🏊 [ 127946 ] -> swimmer
🏋 [ 127947 ] -> weight lifter
🏌 [ 127948 ] -> golfer
🏍 [ 127949 ] -> racing motorcycle
🏎 [ 127950 ] -> racing car
🏏 [ 127951 ] -> cricket bat and ball
🏐 [ 127952 ] -> volleyball
🏑 [ 127953 ] -> field hockey stick and ball
🏒 [ 127954 ] -> ice hockey stick and puck
🏓 [ 127955 ] -> table tennis paddle and ball
🏔 [ 127956 ] -> snow capped mountain
🏕 [ 127957 ] -> camping
🏖 [ 127958 ] -> beach with umbrella
🏗 [ 127959 ] -> building construction
🏘 [ 127960 ] -> house buildings
🏙 [ 127961 ] -> cityscape
🏚 [ 127962 ] -> derelict house building
🏛 [ 127963 ] -> classical building
🏜 [ 127964 ] -> desert
🏝 [ 127965 ] -> desert island
🏞 [ 127966 ] -> national park
🏟 [ 127967 ] -> stadium
🏠 [ 127968 ] -> house building
🏡 [ 127969 ] -> house with garden
🏢 [ 127970 ] -> office building
🏣 [ 127971 ] -> japanese post office
🏤 [ 127972 ] -> european post office
🏥 [ 127973 ] -> hospital
🏦 [ 127974 ] -> bank
🏧 [ 127975 ] -> automated teller machine
🏨 [ 127976 ] -> hotel
🏩 [ 127977 ] -> love hotel
🏪 [ 127978 ] -> convenience store
🏫 [ 127979 ] -> school
🏬 [ 127980 ] -> department store
🏭 [ 127981 ] -> factory
🏮 [ 127982 ] -> izakaya lantern
🏯 [ 127983 ] -> japanese castle
🏰 [ 127984 ] -> european castle
🏳 [ 127987 ] -> waving white flag
🏴 [ 127988 ] -> waving black flag
🏵 [ 127989 ] -> rosette
🏷 [ 127991 ] -> label
🏸 [ 127992 ] -> badminton racquet and shuttlecock
🏹 [ 127993 ] -> bow and arrow
🏺 [ 127994 ] -> amphora
🏻 [ 127995 ] -> emoji modifier fitzpatrick type-1-2
🏼 [ 127996 ] -> emoji modifier fitzpatrick type-3
🏽 [ 127997 ] -> emoji modifier fitzpatrick type-4
🏾 [ 127998 ] -> emoji modifier fitzpatrick type-5
🏿 [ 127999 ] -> emoji modifier fitzpatrick type-6
🐀 [ 128000 ] -> rat
🐁 [ 128001 ] -> mouse
🐂 [ 128002 ] -> ox
🐃 [ 128003 ] -> water buffalo
🐄 [ 128004 ] -> cow
🐅 [ 128005 ] -> tiger
🐆 [ 128006 ] -> leopard
🐇 [ 128007 ] -> rabbit
🐈 [ 128008 ] -> cat
🐉 [ 128009 ] -> dragon
🐊 [ 128010 ] -> crocodile
🐋 [ 128011 ] -> whale
🐌 [ 128012 ] -> snail
🐍 [ 128013 ] -> snake
🐎 [ 128014 ] -> horse
🐏 [ 128015 ] -> ram
🐐 [ 128016 ] -> goat
🐑 [ 128017 ] -> sheep
🐒 [ 128018 ] -> monkey
🐓 [ 128019 ] -> rooster
🐔 [ 128020 ] -> chicken
🐕 [ 128021 ] -> dog
🐖 [ 128022 ] -> pig
🐗 [ 128023 ] -> boar
🐘 [ 128024 ] -> elephant
🐙 [ 128025 ] -> octopus
🐚 [ 128026 ] -> spiral shell
🐛 [ 128027 ] -> bug
🐜 [ 128028 ] -> ant
🐝 [ 128029 ] -> honeybee
🐞 [ 128030 ] -> lady beetle
🐟 [ 128031 ] -> fish
🐠 [ 128032 ] -> tropical fish
🐡 [ 128033 ] -> blowfish
🐢 [ 128034 ] -> turtle
🐣 [ 128035 ] -> hatching chick
🐤 [ 128036 ] -> baby chick
🐥 [ 128037 ] -> front-facing baby chick
🐦 [ 128038 ] -> bird
🐧 [ 128039 ] -> penguin
🐨 [ 128040 ] -> koala
🐩 [ 128041 ] -> poodle
🐪 [ 128042 ] -> dromedary camel
🐫 [ 128043 ] -> bactrian camel
🐬 [ 128044 ] -> dolphin
🐭 [ 128045 ] -> mouse face
🐮 [ 128046 ] -> cow face
🐯 [ 128047 ] -> tiger face
🐰 [ 128048 ] -> rabbit face
🐱 [ 128049 ] -> cat face
🐲 [ 128050 ] -> dragon face
🐳 [ 128051 ] -> spouting whale
🐴 [ 128052 ] -> horse face
🐵 [ 128053 ] -> monkey face
🐶 [ 128054 ] -> dog face
🐷 [ 128055 ] -> pig face
🐸 [ 128056 ] -> frog face
🐹 [ 128057 ] -> hamster face
🐺 [ 128058 ] -> wolf face
🐻 [ 128059 ] -> bear face
🐼 [ 128060 ] -> panda face
🐽 [ 128061 ] -> pig nose
🐾 [ 128062 ] -> paw prints
🐿 [ 128063 ] -> chipmunk
👀 [ 128064 ] -> eyes
👁 [ 128065 ] -> eye
👂 [ 128066 ] -> ear
👃 [ 128067 ] -> nose
👄 [ 128068 ] -> mouth
👅 [ 128069 ] -> tongue
👆 [ 128070 ] -> white up pointing backhand index
👇 [ 128071 ] -> white down pointing backhand index
👈 [ 128072 ] -> white left pointing backhand index
👉 [ 128073 ] -> white right pointing backhand index
👊 [ 128074 ] -> fisted hand sign
👋 [ 128075 ] -> waving hand sign
👌 [ 128076 ] -> ok hand sign
👍 [ 128077 ] -> thumbs up sign
👎 [ 128078 ] -> thumbs down sign
👏 [ 128079 ] -> clapping hands sign
👐 [ 128080 ] -> open hands sign
👑 [ 128081 ] -> crown
👒 [ 128082 ] -> womans hat
👓 [ 128083 ] -> eyeglasses
👔 [ 128084 ] -> necktie
👕 [ 128085 ] -> t-shirt
👖 [ 128086 ] -> jeans
👗 [ 128087 ] -> dress
👘 [ 128088 ] -> kimono
👙 [ 128089 ] -> bikini
👚 [ 128090 ] -> womans clothes
👛 [ 128091 ] -> purse
👜 [ 128092 ] -> handbag
👝 [ 128093 ] -> pouch
👞 [ 128094 ] -> mans shoe
👟 [ 128095 ] -> athletic shoe
👠 [ 128096 ] -> high-heeled shoe
👡 [ 128097 ] -> womans sandal
👢 [ 128098 ] -> womans boots
👣 [ 128099 ] -> footprints
👤 [ 128100 ] -> bust in silhouette
👥 [ 128101 ] -> busts in silhouette
👦 [ 128102 ] -> boy
👧 [ 128103 ] -> girl
👨 [ 128104 ] -> man
👩 [ 128105 ] -> woman
👪 [ 128106 ] -> family
👫 [ 128107 ] -> man and woman holding hands
👬 [ 128108 ] -> two men holding hands
👭 [ 128109 ] -> two women holding hands
👮 [ 128110 ] -> police officer
👯 [ 128111 ] -> woman with bunny ears
👰 [ 128112 ] -> bride with veil
👱 [ 128113 ] -> person with blond hair
👲 [ 128114 ] -> man with gua pi mao
👳 [ 128115 ] -> man with turban
👴 [ 128116 ] -> older man
👵 [ 128117 ] -> older woman
👶 [ 128118 ] -> baby
👷 [ 128119 ] -> construction worker
👸 [ 128120 ] -> princess
👹 [ 128121 ] -> japanese ogre
👺 [ 128122 ] -> japanese goblin
👻 [ 128123 ] -> ghost
👼 [ 128124 ] -> baby angel
👽 [ 128125 ] -> extraterrestrial alien
👾 [ 128126 ] -> alien monster
👿 [ 128127 ] -> imp
💀 [ 128128 ] -> skull
💁 [ 128129 ] -> information desk person
💂 [ 128130 ] -> guardsman
💃 [ 128131 ] -> dancer
💄 [ 128132 ] -> lipstick
💅 [ 128133 ] -> nail polish
💆 [ 128134 ] -> face massage
💇 [ 128135 ] -> haircut
💈 [ 128136 ] -> barber pole
💉 [ 128137 ] -> syringe
💊 [ 128138 ] -> pill
💋 [ 128139 ] -> kiss mark
💌 [ 128140 ] -> love letter
💍 [ 128141 ] -> ring
💎 [ 128142 ] -> gem stone
💏 [ 128143 ] -> kiss
💐 [ 128144 ] -> bouquet
💑 [ 128145 ] -> couple with heart
💒 [ 128146 ] -> wedding
💓 [ 128147 ] -> beating heart
💔 [ 128148 ] -> broken heart
💕 [ 128149 ] -> two hearts
💖 [ 128150 ] -> sparkling heart
💗 [ 128151 ] -> growing heart
💘 [ 128152 ] -> heart with arrow
💙 [ 128153 ] -> blue heart
💚 [ 128154 ] -> green heart
💛 [ 128155 ] -> yellow heart
💜 [ 128156 ] -> purple heart
💝 [ 128157 ] -> heart with ribbon
💞 [ 128158 ] -> revolving hearts
💟 [ 128159 ] -> heart decoration
💠 [ 128160 ] -> diamond shape with a dot inside
💡 [ 128161 ] -> electric light bulb
💢 [ 128162 ] -> anger symbol
💣 [ 128163 ] -> bomb
💤 [ 128164 ] -> sleeping symbol
💥 [ 128165 ] -> collision symbol
💦 [ 128166 ] -> splashing sweat symbol
💧 [ 128167 ] -> droplet
💨 [ 128168 ] -> dash symbol
💩 [ 128169 ] -> pile of poo
💪 [ 128170 ] -> flexed biceps
💫 [ 128171 ] -> dizzy symbol
💬 [ 128172 ] -> speech balloon
💭 [ 128173 ] -> thought balloon
💮 [ 128174 ] -> white flower
💯 [ 128175 ] -> hundred points symbol
💰 [ 128176 ] -> money bag
💱 [ 128177 ] -> currency exchange
💲 [ 128178 ] -> heavy dollar sign
💳 [ 128179 ] -> credit card
💴 [ 128180 ] -> banknote with yen sign
💵 [ 128181 ] -> banknote with dollar sign
💶 [ 128182 ] -> banknote with euro sign
💷 [ 128183 ] -> banknote with pound sign
💸 [ 128184 ] -> money with wings
💹 [ 128185 ] -> chart with upwards trend and yen sign
💺 [ 128186 ] -> seat
💻 [ 128187 ] -> personal computer
💼 [ 128188 ] -> briefcase
💽 [ 128189 ] -> minidisc
💾 [ 128190 ] -> floppy disk
💿 [ 128191 ] -> optical disc
📀 [ 128192 ] -> dvd
📁 [ 128193 ] -> file folder
📂 [ 128194 ] -> open file folder
📃 [ 128195 ] -> page with curl
📄 [ 128196 ] -> page facing up
📅 [ 128197 ] -> calendar
📆 [ 128198 ] -> tear-off calendar
📇 [ 128199 ] -> card index
📈 [ 128200 ] -> chart with upwards trend
📉 [ 128201 ] -> chart with downwards trend
📊 [ 128202 ] -> bar chart
📋 [ 128203 ] -> clipboard
📌 [ 128204 ] -> pushpin
📍 [ 128205 ] -> round pushpin
📎 [ 128206 ] -> paperclip
📏 [ 128207 ] -> straight ruler
📐 [ 128208 ] -> triangular ruler
📑 [ 128209 ] -> bookmark tabs
📒 [ 128210 ] -> ledger
📓 [ 128211 ] -> notebook
📔 [ 128212 ] -> notebook with decorative cover
📕 [ 128213 ] -> closed book
📖 [ 128214 ] -> open book
📗 [ 128215 ] -> green book
📘 [ 128216 ] -> blue book
📙 [ 128217 ] -> orange book
📚 [ 128218 ] -> books
📛 [ 128219 ] -> name badge
📜 [ 128220 ] -> scroll
📝 [ 128221 ] -> memo
📞 [ 128222 ] -> telephone receiver
📟 [ 128223 ] -> pager
📠 [ 128224 ] -> fax machine
📡 [ 128225 ] -> satellite antenna
📢 [ 128226 ] -> public address loudspeaker
📣 [ 128227 ] -> cheering megaphone
📤 [ 128228 ] -> outbox tray
📥 [ 128229 ] -> inbox tray
📦 [ 128230 ] -> package
📧 [ 128231 ] -> e-mail symbol
📨 [ 128232 ] -> incoming envelope
📩 [ 128233 ] -> envelope with downwards arrow above
📪 [ 128234 ] -> closed mailbox with lowered flag
📫 [ 128235 ] -> closed mailbox with raised flag
📬 [ 128236 ] -> open mailbox with raised flag
📭 [ 128237 ] -> open mailbox with lowered flag
📮 [ 128238 ] -> postbox
📯 [ 128239 ] -> postal horn
📰 [ 128240 ] -> newspaper
📱 [ 128241 ] -> mobile phone
📲 [ 128242 ] -> mobile phone with rightwards arrow at left
📳 [ 128243 ] -> vibration mode
📴 [ 128244 ] -> mobile phone off
📵 [ 128245 ] -> no mobile phones
📶 [ 128246 ] -> antenna with bars
📷 [ 128247 ] -> camera
📸 [ 128248 ] -> camera with flash
📹 [ 128249 ] -> video camera
📺 [ 128250 ] -> television
📻 [ 128251 ] -> radio
📼 [ 128252 ] -> videocassette
📽 [ 128253 ] -> film projector
📿 [ 128255 ] -> prayer beads
🔀 [ 128256 ] -> twisted rightwards arrows
🔁 [ 128257 ] -> clockwise rightwards and leftwards open circle arrows
🔂 [ 128258 ] -> clockwise rightwards and leftwards open circle arrows with circled one overlay
🔃 [ 128259 ] -> clockwise downwards and upwards open circle arrows
🔄 [ 128260 ] -> anticlockwise downwards and upwards open circle arrows
🔅 [ 128261 ] -> low brightness symbol
🔆 [ 128262 ] -> high brightness symbol
🔇 [ 128263 ] -> speaker with cancellation stroke
🔈 [ 128264 ] -> speaker
🔉 [ 128265 ] -> speaker with one sound wave
🔊 [ 128266 ] -> speaker with three sound waves
🔋 [ 128267 ] -> battery
🔌 [ 128268 ] -> electric plug
🔍 [ 128269 ] -> left-pointing magnifying glass
🔎 [ 128270 ] -> right-pointing magnifying glass
🔏 [ 128271 ] -> lock with ink pen
🔐 [ 128272 ] -> closed lock with key
🔑 [ 128273 ] -> key
🔒 [ 128274 ] -> lock
🔓 [ 128275 ] -> open lock
🔔 [ 128276 ] -> bell
🔕 [ 128277 ] -> bell with cancellation stroke
🔖 [ 128278 ] -> bookmark
🔗 [ 128279 ] -> link symbol
🔘 [ 128280 ] -> radio button
🔙 [ 128281 ] -> back with leftwards arrow above
🔚 [ 128282 ] -> end with leftwards arrow above
🔛 [ 128283 ] -> on with exclamation mark with left right arrow above
🔜 [ 128284 ] -> soon with rightwards arrow above
🔝 [ 128285 ] -> top with upwards arrow above
🔞 [ 128286 ] -> no one under eighteen symbol
🔟 [ 128287 ] -> keycap ten
🔠 [ 128288 ] -> input symbol for latin capital letters
🔡 [ 128289 ] -> input symbol for latin small letters
🔢 [ 128290 ] -> input symbol for numbers
🔣 [ 128291 ] -> input symbol for symbols
🔤 [ 128292 ] -> input symbol for latin letters
🔥 [ 128293 ] -> fire
🔦 [ 128294 ] -> electric torch
🔧 [ 128295 ] -> wrench
🔨 [ 128296 ] -> hammer
🔩 [ 128297 ] -> nut and bolt
🔪 [ 128298 ] -> hocho
🔫 [ 128299 ] -> pistol
🔬 [ 128300 ] -> microscope
🔭 [ 128301 ] -> telescope
🔮 [ 128302 ] -> crystal ball
🔯 [ 128303 ] -> six pointed star with middle dot
🔰 [ 128304 ] -> japanese symbol for beginner
🔱 [ 128305 ] -> trident emblem
🔲 [ 128306 ] -> black square button
🔳 [ 128307 ] -> white square button
🔴 [ 128308 ] -> large red circle
🔵 [ 128309 ] -> large blue circle
🔶 [ 128310 ] -> large orange diamond
🔷 [ 128311 ] -> large blue diamond
🔸 [ 128312 ] -> small orange diamond
🔹 [ 128313 ] -> small blue diamond
🔺 [ 128314 ] -> up-pointing red triangle
🔻 [ 128315 ] -> down-pointing red triangle
🔼 [ 128316 ] -> up-pointing small red triangle
🔽 [ 128317 ] -> down-pointing small red triangle
🕉 [ 128329 ] -> om symbol
🕊 [ 128330 ] -> dove of peace
🕋 [ 128331 ] -> kaaba
🕌 [ 128332 ] -> mosque
🕍 [ 128333 ] -> synagogue
🕎 [ 128334 ] -> menorah with nine branches
🕐 [ 128336 ] -> clock face one oclock
🕑 [ 128337 ] -> clock face two oclock
🕒 [ 128338 ] -> clock face three oclock
🕓 [ 128339 ] -> clock face four oclock
🕔 [ 128340 ] -> clock face five oclock
🕕 [ 128341 ] -> clock face six oclock
🕖 [ 128342 ] -> clock face seven oclock
🕗 [ 128343 ] -> clock face eight oclock
🕘 [ 128344 ] -> clock face nine oclock
🕙 [ 128345 ] -> clock face ten oclock
🕚 [ 128346 ] -> clock face eleven oclock
🕛 [ 128347 ] -> clock face twelve oclock
🕜 [ 128348 ] -> clock face one-thirty
🕝 [ 128349 ] -> clock face two-thirty
🕞 [ 128350 ] -> clock face three-thirty
🕟 [ 128351 ] -> clock face four-thirty
🕠 [ 128352 ] -> clock face five-thirty
🕡 [ 128353 ] -> clock face six-thirty
🕢 [ 128354 ] -> clock face seven-thirty
🕣 [ 128355 ] -> clock face eight-thirty
🕤 [ 128356 ] -> clock face nine-thirty
🕥 [ 128357 ] -> clock face ten-thirty
🕦 [ 128358 ] -> clock face eleven-thirty
🕧 [ 128359 ] -> clock face twelve-thirty
🕯 [ 128367 ] -> candle
🕰 [ 128368 ] -> mantelpiece clock
🕳 [ 128371 ] -> hole
🕴 [ 128372 ] -> man in business suit levitating
🕵 [ 128373 ] -> sleuth or spy
🕶 [ 128374 ] -> dark sunglasses
🕷 [ 128375 ] -> spider
🕸 [ 128376 ] -> spider web
🕹 [ 128377 ] -> joystick
🕺 [ 128378 ] -> man dancing
🖇 [ 128391 ] -> linked paperclips
🖊 [ 128394 ] -> lower left ballpoint pen
🖋 [ 128395 ] -> lower left fountain pen
🖌 [ 128396 ] -> lower left paintbrush
🖍 [ 128397 ] -> lower left crayon
🖐 [ 128400 ] -> raised hand with fingers splayed
🖕 [ 128405 ] -> reversed hand with middle finger extended
🖖 [ 128406 ] -> raised hand with part between middle and ring fingers
🖤 [ 128420 ] -> black heart
🖥 [ 128421 ] -> desktop computer
🖨 [ 128424 ] -> printer
🖱 [ 128433 ] -> three button mouse
🖲 [ 128434 ] -> trackball
🖼 [ 128444 ] -> frame with picture
🗂 [ 128450 ] -> card index dividers
🗃 [ 128451 ] -> card file box
🗄 [ 128452 ] -> file cabinet
🗑 [ 128465 ] -> wastebasket
🗒 [ 128466 ] -> spiral note pad
🗓 [ 128467 ] -> spiral calendar pad
🗜 [ 128476 ] -> compression
🗝 [ 128477 ] -> old key
🗞 [ 128478 ] -> rolled-up newspaper
🗡 [ 128481 ] -> dagger knife
🗣 [ 128483 ] -> speaking head in silhouette
🗨 [ 128488 ] -> left speech bubble
🗯 [ 128495 ] -> right anger bubble
🗳 [ 128499 ] -> ballot box with ballot
🗺 [ 128506 ] -> world map
🗻 [ 128507 ] -> mount fuji
🗼 [ 128508 ] -> tokyo tower
🗽 [ 128509 ] -> statue of liberty
🗾 [ 128510 ] -> silhouette of japan
🗿 [ 128511 ] -> moyai
😀 [ 128512 ] -> grinning face
😁 [ 128513 ] -> grinning face with smiling eyes
😂 [ 128514 ] -> face with tears of joy
😃 [ 128515 ] -> smiling face with open mouth
😄 [ 128516 ] -> smiling face with open mouth and smiling eyes
😅 [ 128517 ] -> smiling face with open mouth and cold sweat
😆 [ 128518 ] -> smiling face with open mouth and tightly-closed eyes
😇 [ 128519 ] -> smiling face with halo
😈 [ 128520 ] -> smiling face with horns
😉 [ 128521 ] -> winking face
😊 [ 128522 ] -> smiling face with smiling eyes
😋 [ 128523 ] -> face savouring delicious food
😌 [ 128524 ] -> relieved face
😍 [ 128525 ] -> smiling face with heart-shaped eyes
😎 [ 128526 ] -> smiling face with sunglasses
😏 [ 128527 ] -> smirking face
😐 [ 128528 ] -> neutral face
😑 [ 128529 ] -> expressionless face
😒 [ 128530 ] -> unamused face
😓 [ 128531 ] -> face with cold sweat
😔 [ 128532 ] -> pensive face
😕 [ 128533 ] -> confused face
😖 [ 128534 ] -> confounded face
😗 [ 128535 ] -> kissing face
😘 [ 128536 ] -> face throwing a kiss
😙 [ 128537 ] -> kissing face with smiling eyes
😚 [ 128538 ] -> kissing face with closed eyes
😛 [ 128539 ] -> face with stuck-out tongue
😜 [ 128540 ] -> face with stuck-out tongue and winking eye
😝 [ 128541 ] -> face with stuck-out tongue and tightly-closed eyes
😞 [ 128542 ] -> disappointed face
😟 [ 128543 ] -> worried face
😠 [ 128544 ] -> angry face
😡 [ 128545 ] -> pouting face
😢 [ 128546 ] -> crying face
😣 [ 128547 ] -> persevering face
😤 [ 128548 ] -> face with look of triumph
😥 [ 128549 ] -> disappointed but relieved face
😦 [ 128550 ] -> frowning face with open mouth
😧 [ 128551 ] -> anguished face
😨 [ 128552 ] -> fearful face
😩 [ 128553 ] -> weary face
😪 [ 128554 ] -> sleepy face
😫 [ 128555 ] -> tired face
😬 [ 128556 ] -> grimacing face
😭 [ 128557 ] -> loudly crying face
😮 [ 128558 ] -> face with open mouth
😯 [ 128559 ] -> hushed face
😰 [ 128560 ] -> face with open mouth and cold sweat
😱 [ 128561 ] -> face screaming in fear
😲 [ 128562 ] -> astonished face
😳 [ 128563 ] -> flushed face
😴 [ 128564 ] -> sleeping face
😵 [ 128565 ] -> dizzy face
😶 [ 128566 ] -> face without mouth
😷 [ 128567 ] -> face with medical mask
😸 [ 128568 ] -> grinning cat face with smiling eyes
😹 [ 128569 ] -> cat face with tears of joy
😺 [ 128570 ] -> smiling cat face with open mouth
😻 [ 128571 ] -> smiling cat face with heart-shaped eyes
😼 [ 128572 ] -> cat face with wry smile
😽 [ 128573 ] -> kissing cat face with closed eyes
😾 [ 128574 ] -> pouting cat face
😿 [ 128575 ] -> crying cat face
🙀 [ 128576 ] -> weary cat face
🙁 [ 128577 ] -> slightly frowning face
🙂 [ 128578 ] -> slightly smiling face
🙃 [ 128579 ] -> upside-down face
🙄 [ 128580 ] -> face with rolling eyes
🙅 [ 128581 ] -> face with no good gesture
🙆 [ 128582 ] -> face with ok gesture
🙇 [ 128583 ] -> person bowing deeply
🙈 [ 128584 ] -> see-no-evil monkey
🙉 [ 128585 ] -> hear-no-evil monkey
🙊 [ 128586 ] -> speak-no-evil monkey
🙋 [ 128587 ] -> happy person raising one hand
🙌 [ 128588 ] -> person raising both hands in celebration
🙍 [ 128589 ] -> person frowning
🙎 [ 128590 ] -> person with pouting face
🙏 [ 128591 ] -> person with folded hands
🚀 [ 128640 ] -> rocket
🚁 [ 128641 ] -> helicopter
🚂 [ 128642 ] -> steam locomotive
🚃 [ 128643 ] -> railway car
🚄 [ 128644 ] -> high-speed train
🚅 [ 128645 ] -> high-speed train with bullet nose
🚆 [ 128646 ] -> train
🚇 [ 128647 ] -> metro
🚈 [ 128648 ] -> light rail
🚉 [ 128649 ] -> station
🚊 [ 128650 ] -> tram
🚋 [ 128651 ] -> tram car
🚌 [ 128652 ] -> bus
🚍 [ 128653 ] -> oncoming bus
🚎 [ 128654 ] -> trolleybus
🚏 [ 128655 ] -> bus stop
🚐 [ 128656 ] -> minibus
🚑 [ 128657 ] -> ambulance
🚒 [ 128658 ] -> fire engine
🚓 [ 128659 ] -> police car
🚔 [ 128660 ] -> oncoming police car
🚕 [ 128661 ] -> taxi
🚖 [ 128662 ] -> oncoming taxi
🚗 [ 128663 ] -> automobile
🚘 [ 128664 ] -> oncoming automobile
🚙 [ 128665 ] -> recreational vehicle
🚚 [ 128666 ] -> delivery truck
🚛 [ 128667 ] -> articulated lorry
🚜 [ 128668 ] -> tractor
🚝 [ 128669 ] -> monorail
🚞 [ 128670 ] -> mountain railway
🚟 [ 128671 ] -> suspension railway
🚠 [ 128672 ] -> mountain cableway
🚡 [ 128673 ] -> aerial tramway
🚢 [ 128674 ] -> ship
🚣 [ 128675 ] -> rowboat
🚤 [ 128676 ] -> speedboat
🚥 [ 128677 ] -> horizontal traffic light
🚦 [ 128678 ] -> vertical traffic light
🚧 [ 128679 ] -> construction sign
🚨 [ 128680 ] -> police cars revolving light
🚩 [ 128681 ] -> triangular flag on post
🚪 [ 128682 ] -> door
🚫 [ 128683 ] -> no entry sign
🚬 [ 128684 ] -> smoking symbol
🚭 [ 128685 ] -> no smoking symbol
🚮 [ 128686 ] -> put litter in its place symbol
🚯 [ 128687 ] -> do not litter symbol
🚰 [ 128688 ] -> potable water symbol
🚱 [ 128689 ] -> non-potable water symbol
🚲 [ 128690 ] -> bicycle
🚳 [ 128691 ] -> no bicycles
🚴 [ 128692 ] -> bicyclist
🚵 [ 128693 ] -> mountain bicyclist
🚶 [ 128694 ] -> pedestrian
🚷 [ 128695 ] -> no pedestrians
🚸 [ 128696 ] -> children crossing
🚹 [ 128697 ] -> mens symbol
🚺 [ 128698 ] -> womens symbol
🚻 [ 128699 ] -> restroom
🚼 [ 128700 ] -> baby symbol
🚽 [ 128701 ] -> toilet
🚾 [ 128702 ] -> water closet
🚿 [ 128703 ] -> shower
🛀 [ 128704 ] -> bath
🛁 [ 128705 ] -> bathtub
🛂 [ 128706 ] -> passport control
🛃 [ 128707 ] -> customs
🛄 [ 128708 ] -> baggage claim
🛅 [ 128709 ] -> left luggage
🛋 [ 128715 ] -> couch and lamp
🛌 [ 128716 ] -> sleeping accommodation
🛍 [ 128717 ] -> shopping bags
🛎 [ 128718 ] -> bellhop bell
🛏 [ 128719 ] -> bed
🛐 [ 128720 ] -> place of worship
🛑 [ 128721 ] -> octagonal sign
🛒 [ 128722 ] -> shopping trolley
🛕 [ 128725 ] -> hindu temple
🛖 [ 128726 ] -> hut
🛗 [ 128727 ] -> elevator
🛜 [ 128732 ] -> wireless
🛝 [ 128733 ] -> playground slide
🛞 [ 128734 ] -> wheel
🛟 [ 128735 ] -> ring buoy
🛠 [ 128736 ] -> hammer and wrench
🛡 [ 128737 ] -> shield
🛢 [ 128738 ] -> oil drum
🛣 [ 128739 ] -> motorway
🛤 [ 128740 ] -> railway track
🛥 [ 128741 ] -> motor boat
🛩 [ 128745 ] -> small airplane
🛫 [ 128747 ] -> airplane departure
🛬 [ 128748 ] -> airplane arriving
🛰 [ 128752 ] -> satellite
🛳 [ 128755 ] -> passenger ship
🛴 [ 128756 ] -> scooter
🛵 [ 128757 ] -> motor scooter
🛶 [ 128758 ] -> canoe
🛷 [ 128759 ] -> sled
🛸 [ 128760 ] -> flying saucer
🛹 [ 128761 ] -> skateboard
🛺 [ 128762 ] -> auto rickshaw
🛻 [ 128763 ] -> pickup truck
🛼 [ 128764 ] -> roller skate
🟠 [ 128992 ] -> large orange circle
🟡 [ 128993 ] -> large yellow circle
🟢 [ 128994 ] -> large green circle
🟣 [ 128995 ] -> large purple circle
🟤 [ 128996 ] -> large brown circle
🟥 [ 128997 ] -> large red square
🟦 [ 128998 ] -> large blue square
🟧 [ 128999 ] -> large orange square
🟨 [ 129000 ] -> large yellow square
🟩 [ 129001 ] -> large green square
🟪 [ 129002 ] -> large purple square
🟫 [ 129003 ] -> large brown square
🟰 [ 129008 ] -> heavy equals sign
🤌 [ 129292 ] -> pinched fingers
🤍 [ 129293 ] -> white heart
🤎 [ 129294 ] -> brown heart
🤏 [ 129295 ] -> pinching hand
🤐 [ 129296 ] -> zipper-mouth face
🤑 [ 129297 ] -> money-mouth face
🤒 [ 129298 ] -> face with thermometer
🤓 [ 129299 ] -> nerd face
🤔 [ 129300 ] -> thinking face
🤕 [ 129301 ] -> face with head-bandage
🤖 [ 129302 ] -> robot face
🤗 [ 129303 ] -> hugging face
🤘 [ 129304 ] -> sign of the horns
🤙 [ 129305 ] -> call me hand
🤚 [ 129306 ] -> raised back of hand
🤛 [ 129307 ] -> left-facing fist
🤜 [ 129308 ] -> right-facing fist
🤝 [ 129309 ] -> handshake
🤞 [ 129310 ] -> hand with index and middle fingers crossed
🤟 [ 129311 ] -> i love you hand sign
🤠 [ 129312 ] -> face with cowboy hat
🤡 [ 129313 ] -> clown face
🤢 [ 129314 ] -> nauseated face
🤣 [ 129315 ] -> rolling on the floor laughing
🤤 [ 129316 ] -> drooling face
🤥 [ 129317 ] -> lying face
🤦 [ 129318 ] -> face palm
🤧 [ 129319 ] -> sneezing face
🤨 [ 129320 ] -> face with one eyebrow raised
🤩 [ 129321 ] -> grinning face with star eyes
🤪 [ 129322 ] -> grinning face with one large and one small eye
🤫 [ 129323 ] -> face with finger covering closed lips
🤬 [ 129324 ] -> serious face with symbols covering mouth
🤭 [ 129325 ] -> smiling face with smiling eyes and hand covering mouth
🤮 [ 129326 ] -> face with open mouth vomiting
🤯 [ 129327 ] -> shocked face with exploding head
🤰 [ 129328 ] -> pregnant woman
🤱 [ 129329 ] -> breast-feeding
🤲 [ 129330 ] -> palms up together
🤳 [ 129331 ] -> selfie
🤴 [ 129332 ] -> prince
🤵 [ 129333 ] -> man in tuxedo
🤶 [ 129334 ] -> mother christmas
🤷 [ 129335 ] -> shrug
🤸 [ 129336 ] -> person doing cartwheel
🤹 [ 129337 ] -> juggling
🤺 [ 129338 ] -> fencer
🤼 [ 129340 ] -> wrestlers
🤽 [ 129341 ] -> water polo
🤾 [ 129342 ] -> handball
🤿 [ 129343 ] -> diving mask
🥀 [ 129344 ] -> wilted flower
🥁 [ 129345 ] -> drum with drumsticks
🥂 [ 129346 ] -> clinking glasses
🥃 [ 129347 ] -> tumbler glass
🥄 [ 129348 ] -> spoon
🥅 [ 129349 ] -> goal net
🥇 [ 129351 ] -> first place medal
🥈 [ 129352 ] -> second place medal
🥉 [ 129353 ] -> third place medal
🥊 [ 129354 ] -> boxing glove
🥋 [ 129355 ] -> martial arts uniform
🥌 [ 129356 ] -> curling stone
🥍 [ 129357 ] -> lacrosse stick and ball
🥎 [ 129358 ] -> softball
🥏 [ 129359 ] -> flying disc
🥐 [ 129360 ] -> croissant
🥑 [ 129361 ] -> avocado
🥒 [ 129362 ] -> cucumber
🥓 [ 129363 ] -> bacon
🥔 [ 129364 ] -> potato
🥕 [ 129365 ] -> carrot
🥖 [ 129366 ] -> baguette bread
🥗 [ 129367 ] -> green salad
🥘 [ 129368 ] -> shallow pan of food
🥙 [ 129369 ] -> stuffed flatbread
🥚 [ 129370 ] -> egg
🥛 [ 129371 ] -> glass of milk
🥜 [ 129372 ] -> peanuts
🥝 [ 129373 ] -> kiwifruit
🥞 [ 129374 ] -> pancakes
🥟 [ 129375 ] -> dumpling
🥠 [ 129376 ] -> fortune cookie
🥡 [ 129377 ] -> takeout box
🥢 [ 129378 ] -> chopsticks
🥣 [ 129379 ] -> bowl with spoon
🥤 [ 129380 ] -> cup with straw
🥥 [ 129381 ] -> coconut
🥦 [ 129382 ] -> broccoli
🥧 [ 129383 ] -> pie
🥨 [ 129384 ] -> pretzel
🥩 [ 129385 ] -> cut of meat
🥪 [ 129386 ] -> sandwich
🥫 [ 129387 ] -> canned food
🥬 [ 129388 ] -> leafy green
🥭 [ 129389 ] -> mango
🥮 [ 129390 ] -> moon cake
🥯 [ 129391 ] -> bagel
🥰 [ 129392 ] -> smiling face with smiling eyes and three hearts
🥱 [ 129393 ] -> yawning face
🥲 [ 129394 ] -> smiling face with tear
🥳 [ 129395 ] -> face with party horn and party hat
🥴 [ 129396 ] -> face with uneven eyes and wavy mouth
🥵 [ 129397 ] -> overheated face
🥶 [ 129398 ] -> freezing face
🥷 [ 129399 ] -> ninja
🥸 [ 129400 ] -> disguised face
🥹 [ 129401 ] -> face holding back tears
🥺 [ 129402 ] -> face with pleading eyes
🥻 [ 129403 ] -> sari
🥼 [ 129404 ] -> lab coat
🥽 [ 129405 ] -> goggles
🥾 [ 129406 ] -> hiking boot
🥿 [ 129407 ] -> flat shoe
🦀 [ 129408 ] -> crab
🦁 [ 129409 ] -> lion face
🦂 [ 129410 ] -> scorpion
🦃 [ 129411 ] -> turkey
🦄 [ 129412 ] -> unicorn face
🦅 [ 129413 ] -> eagle
🦆 [ 129414 ] -> duck
🦇 [ 129415 ] -> bat
🦈 [ 129416 ] -> shark
🦉 [ 129417 ] -> owl
🦊 [ 129418 ] -> fox face
🦋 [ 129419 ] -> butterfly
🦌 [ 129420 ] -> deer
🦍 [ 129421 ] -> gorilla
🦎 [ 129422 ] -> lizard
🦏 [ 129423 ] -> rhinoceros
🦐 [ 129424 ] -> shrimp
🦑 [ 129425 ] -> squid
🦒 [ 129426 ] -> giraffe face
🦓 [ 129427 ] -> zebra face
🦔 [ 129428 ] -> hedgehog
🦕 [ 129429 ] -> sauropod
🦖 [ 129430 ] -> t-rex
🦗 [ 129431 ] -> cricket
🦘 [ 129432 ] -> kangaroo
🦙 [ 129433 ] -> llama
🦚 [ 129434 ] -> peacock
🦛 [ 129435 ] -> hippopotamus
🦜 [ 129436 ] -> parrot
🦝 [ 129437 ] -> raccoon
🦞 [ 129438 ] -> lobster
🦟 [ 129439 ] -> mosquito
🦠 [ 129440 ] -> microbe
🦡 [ 129441 ] -> badger
🦢 [ 129442 ] -> swan
🦣 [ 129443 ] -> mammoth
🦤 [ 129444 ] -> dodo
🦥 [ 129445 ] -> sloth
🦦 [ 129446 ] -> otter
🦧 [ 129447 ] -> orangutan
🦨 [ 129448 ] -> skunk
🦩 [ 129449 ] -> flamingo
🦪 [ 129450 ] -> oyster
🦫 [ 129451 ] -> beaver
🦬 [ 129452 ] -> bison
🦭 [ 129453 ] -> seal
🦮 [ 129454 ] -> guide dog
🦯 [ 129455 ] -> probing cane
🦰 [ 129456 ] -> emoji component red hair
🦱 [ 129457 ] -> emoji component curly hair
🦲 [ 129458 ] -> emoji component bald
🦳 [ 129459 ] -> emoji component white hair
🦴 [ 129460 ] -> bone
🦵 [ 129461 ] -> leg
🦶 [ 129462 ] -> foot
🦷 [ 129463 ] -> tooth
🦸 [ 129464 ] -> superhero
🦹 [ 129465 ] -> supervillain
🦺 [ 129466 ] -> safety vest
🦻 [ 129467 ] -> ear with hearing aid
🦼 [ 129468 ] -> motorized wheelchair
🦽 [ 129469 ] -> manual wheelchair
🦾 [ 129470 ] -> mechanical arm
🦿 [ 129471 ] -> mechanical leg
🧀 [ 129472 ] -> cheese wedge
🧁 [ 129473 ] -> cupcake
🧂 [ 129474 ] -> salt shaker
🧃 [ 129475 ] -> beverage box
🧄 [ 129476 ] -> garlic
🧅 [ 129477 ] -> onion
🧆 [ 129478 ] -> falafel
🧇 [ 129479 ] -> waffle
🧈 [ 129480 ] -> butter
🧉 [ 129481 ] -> mate drink
🧊 [ 129482 ] -> ice cube
🧋 [ 129483 ] -> bubble tea
🧌 [ 129484 ] -> troll
🧍 [ 129485 ] -> standing person
🧎 [ 129486 ] -> kneeling person
🧏 [ 129487 ] -> deaf person
🧐 [ 129488 ] -> face with monocle
🧑 [ 129489 ] -> adult
🧒 [ 129490 ] -> child
🧓 [ 129491 ] -> older adult
🧔 [ 129492 ] -> bearded person
🧕 [ 129493 ] -> person with headscarf
🧖 [ 129494 ] -> person in steamy room
🧗 [ 129495 ] -> person climbing
🧘 [ 129496 ] -> person in lotus position
🧙 [ 129497 ] -> mage
🧚 [ 129498 ] -> fairy
🧛 [ 129499 ] -> vampire
🧜 [ 129500 ] -> merperson
🧝 [ 129501 ] -> elf
🧞 [ 129502 ] -> genie
🧟 [ 129503 ] -> zombie
🧠 [ 129504 ] -> brain
🧡 [ 129505 ] -> orange heart
🧢 [ 129506 ] -> billed cap
🧣 [ 129507 ] -> scarf
🧤 [ 129508 ] -> gloves
🧥 [ 129509 ] -> coat
🧦 [ 129510 ] -> socks
🧧 [ 129511 ] -> red gift envelope
🧨 [ 129512 ] -> firecracker
🧩 [ 129513 ] -> jigsaw puzzle piece
🧪 [ 129514 ] -> test tube
🧫 [ 129515 ] -> petri dish
🧬 [ 129516 ] -> dna double helix
🧭 [ 129517 ] -> compass
🧮 [ 129518 ] -> abacus
🧯 [ 129519 ] -> fire extinguisher
🧰 [ 129520 ] -> toolbox
🧱 [ 129521 ] -> brick
🧲 [ 129522 ] -> magnet
🧳 [ 129523 ] -> luggage
🧴 [ 129524 ] -> lotion bottle
🧵 [ 129525 ] -> spool of thread
🧶 [ 129526 ] -> ball of yarn
🧷 [ 129527 ] -> safety pin
🧸 [ 129528 ] -> teddy bear
🧹 [ 129529 ] -> broom
🧺 [ 129530 ] -> basket
🧻 [ 129531 ] -> roll of paper
🧼 [ 129532 ] -> bar of soap
🧽 [ 129533 ] -> sponge
🧾 [ 129534 ] -> receipt
🧿 [ 129535 ] -> nazar amulet
🩰 [ 129648 ] -> ballet shoes
🩱 [ 129649 ] -> one-piece swimsuit
🩲 [ 129650 ] -> briefs
🩳 [ 129651 ] -> shorts
🩴 [ 129652 ] -> thong sandal
🩵 [ 129653 ] -> light blue heart
🩶 [ 129654 ] -> grey heart
🩷 [ 129655 ] -> pink heart
🩸 [ 129656 ] -> drop of blood
🩹 [ 129657 ] -> adhesive bandage
🩺 [ 129658 ] -> stethoscope
🩻 [ 129659 ] -> x-ray
🩼 [ 129660 ] -> crutch
🪀 [ 129664 ] -> yo-yo
🪁 [ 129665 ] -> kite
🪂 [ 129666 ] -> parachute
🪃 [ 129667 ] -> boomerang
🪄 [ 129668 ] -> magic wand
🪅 [ 129669 ] -> pinata
🪆 [ 129670 ] -> nesting dolls
🪇 [ 129671 ] -> maracas
🪈 [ 129672 ] -> flute
🪉 [ 129673 ] -> harp
🪏 [ 129679 ] -> shovel
🪐 [ 129680 ] -> ringed planet
🪑 [ 129681 ] -> chair
🪒 [ 129682 ] -> razor
🪓 [ 129683 ] -> axe
🪔 [ 129684 ] -> diya lamp
🪕 [ 129685 ] -> banjo
🪖 [ 129686 ] -> military helmet
🪗 [ 129687 ] -> accordion
🪘 [ 129688 ] -> long drum
🪙 [ 129689 ] -> coin
🪚 [ 129690 ] -> carpentry saw
🪛 [ 129691 ] -> screwdriver
🪜 [ 129692 ] -> ladder
🪝 [ 129693 ] -> hook
🪞 [ 129694 ] -> mirror
🪟 [ 129695 ] -> window
🪠 [ 129696 ] -> plunger
🪡 [ 129697 ] -> sewing needle
🪢 [ 129698 ] -> knot
🪣 [ 129699 ] -> bucket
🪤 [ 129700 ] -> mouse trap
🪥 [ 129701 ] -> toothbrush
🪦 [ 129702 ] -> headstone
🪧 [ 129703 ] -> placard
🪨 [ 129704 ] -> rock
🪩 [ 129705 ] -> mirror ball
🪪 [ 129706 ] -> identification card
🪫 [ 129707 ] -> low battery
🪬 [ 129708 ] -> hamsa
🪭 [ 129709 ] -> folding hand fan
🪮 [ 129710 ] -> hair pick
🪯 [ 129711 ] -> khanda
🪰 [ 129712 ] -> fly
🪱 [ 129713 ] -> worm
🪲 [ 129714 ] -> beetle
🪳 [ 129715 ] -> cockroach
🪴 [ 129716 ] -> potted plant
🪵 [ 129717 ] -> wood
🪶 [ 129718 ] -> feather
🪷 [ 129719 ] -> lotus
🪸 [ 129720 ] -> coral
🪹 [ 129721 ] -> empty nest
🪺 [ 129722 ] -> nest with eggs
🪻 [ 129723 ] -> hyacinth
🪼 [ 129724 ] -> jellyfish
🪽 [ 129725 ] -> wing
🪾 [ 129726 ] -> leafless tree
🪿 [ 129727 ] -> goose
🫀 [ 129728 ] -> anatomical heart
🫁 [ 129729 ] -> lungs
🫂 [ 129730 ] -> people hugging
🫃 [ 129731 ] -> pregnant man
🫄 [ 129732 ] -> pregnant person
🫅 [ 129733 ] -> person with crown
🫆 [ 129734 ] -> fingerprint
🫎 [ 129742 ] -> moose
🫏 [ 129743 ] -> donkey
🫐 [ 129744 ] -> blueberries
🫑 [ 129745 ] -> bell pepper
🫒 [ 129746 ] -> olive
🫓 [ 129747 ] -> flatbread
🫔 [ 129748 ] -> tamale
🫕 [ 129749 ] -> fondue
🫖 [ 129750 ] -> teapot
🫗 [ 129751 ] -> pouring liquid
🫘 [ 129752 ] -> beans
🫙 [ 129753 ] -> jar
🫚 [ 129754 ] -> ginger root
🫛 [ 129755 ] -> pea pod
🫜 [ 129756 ] -> root vegetable
🫟 [ 129759 ] -> splatter
🫠 [ 129760 ] -> melting face
🫡 [ 129761 ] -> saluting face
🫢 [ 129762 ] -> face with open eyes and hand over mouth
🫣 [ 129763 ] -> face with peeking eye
🫤 [ 129764 ] -> face with diagonal mouth
🫥 [ 129765 ] -> dotted line face
🫦 [ 129766 ] -> biting lip
🫧 [ 129767 ] -> bubbles
🫨 [ 129768 ] -> shaking face
🫩 [ 129769 ] -> face with bags under eyes
🫰 [ 129776 ] -> hand with index finger and thumb crossed
🫱 [ 129777 ] -> rightwards hand
🫲 [ 129778 ] -> leftwards hand
🫳 [ 129779 ] -> palm down hand
🫴 [ 129780 ] -> palm up hand
🫵 [ 129781 ] -> index pointing at the viewer
🫶 [ 129782 ] -> heart hands
🫷 [ 129783 ] -> leftwards pushing hand
🫸 [ 129784 ] -> rightwards pushing hand
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment