The missing emoji library for java.
emoji-java is a lightweight java library that helps you use Emojis in your java applications.
<dependency>
<groupId>com.vdurmont</groupId>
<artifactId>emoji-java</artifactId>
<version>2.2.1</version>
</dependency>
You can also download the project, build it with mvn clean install
and add the generated jar to your buildpath.
compile 'com.vdurmont:emoji-java:2.2.1'
The EmojiManager
provides several static methods to search through the emojis database:
getForTag
returns all the emojis for a given taggetForAlias
returns the emoji for an aliasgetAll
returns all the emojisisEmoji
checks if a string is an emoji
You can also query the metadata:
getAllTags
returns the available tags
Or get everything:
getAll
returns all the emojis
An Emoji
is a POJO (plain old java object), which provides the following methods:
getUnicode
returns the unicode representation of the emojigetUnicode(Fitzpatrick)
returns the unicode representation of the emoji with the provided Fitzpatrick modifier. If the emoji doesn't support the Fitzpatrick modifiers, this method will throw anUnsupportedOperationException
. If the provided Fitzpatrick is null, this method will return the unicode of the emoji.getDescription
returns the (optional) description of the emojigetAliases
returns a list of aliases for this emojigetTags
returns a list of tags for this emojigetHtmlDecimal
returns an html decimal representation of the emojigetHtmlHexadecimal
returns an html decimal representation of the emojisupportsFitzpatrick
returns true if the emoji supports the Fitzpatrick modifiers, else false
Some emojis now support the use of Fitzpatrick modifiers that gives the choice between 5 shades of skin tones:
Modifier | Type |
---|---|
๐ป | type_1_2 |
๐ผ | type_3 |
๐ฝ | type_4 |
๐พ | type_5 |
๐ฟ | type_6 |
We defined the format of the aliases including a Fitzpatrick modifier as:
:ALIAS|TYPE:
A few examples:
:boy|type_1_2:
:swimmer|type_4:
:santa|type_6:
To replace all the aliases and the html representations found in a string by their unicode, use EmojiParser#parseToUnicode(String)
.
For example:
String str = "An :grinning:awesome :smiley:string 😄with a few :wink:emojis!";
String result = EmojiParser.parseToUnicode(str);
System.out.println(result);
// Prints:
// "An ๐awesome ๐string ๐with a few ๐emojis!"
To replace all the emoji's unicodes found in a string by their aliases, use EmojiParser#parseToAliases(String)
.
For example:
String str = "An ๐awesome ๐string with a few ๐emojis!";
String result = EmojiParser.parseToAliases(str);
System.out.println(result);
// Prints:
// "An :grinning:awesome :smiley:string with a few :wink:emojis!"
By default, the aliases will parse and include any Fitzpatrick modifier that would be provided. If you want to remove or ignore the Fitzpatrick modifiers, use EmojiParser#parseToAliases(String, FitzpatrickAction)
. Examples:
String str = "Here is a boy: \uD83D\uDC66\uD83C\uDFFF!";
System.out.println(EmojiParser.parseToAliases(str));
System.out.println(EmojiParser.parseToAliases(str, FitzpatrickAction.PARSE));
// Prints twice: "Here is a boy: :boy|type_6:!"
System.out.println(EmojiParser.parseToAliases(str, FitzpatrickAction.REMOVE));
// Prints: "Here is a boy: :boy:!"
System.out.println(EmojiParser.parseToAliases(str, FitzpatrickAction.IGNORE));
// Prints: "Here is a boy: :boy:๐ฟ!"
To replace all the emoji's unicodes found in a string by their html representation, use EmojiParser#parseToHtmlDecimal(String)
or EmojiParser#parseToHtmlHexadecimal(String)
.
For example:
String str = "An ๐awesome ๐string with a few ๐emojis!";
String resultDecimal = EmojiParser.parseToHtmlDecimal(str);
System.out.println(resultDecimal);
// Prints:
// "An 😀awesome 😃string with a few 😉emojis!"
String resultHexadecimal = EmojiParser.parseToHtmlHexadecimal(str);
System.out.println(resultHexadecimal);
// Prints:
// "An 😀awesome 😃string with a few 😉emojis!"
By default, any Fitzpatrick modifier will be removed. If you want to ignore the Fitzpatrick modifiers, use EmojiParser#parseToAliases(String, FitzpatrickAction)
. Examples:
String str = "Here is a boy: \uD83D\uDC66\uD83C\uDFFF!";
System.out.println(EmojiParser.parseToHtmlDecimal(str));
System.out.println(EmojiParser.parseToHtmlDecimal(str, FitzpatrickAction.PARSE));
System.out.println(EmojiParser.parseToHtmlDecimal(str, FitzpatrickAction.REMOVE));
// Print 3 times: "Here is a boy: 👦!"
System.out.println(EmojiParser.parseToHtmlDecimal(str, FitzpatrickAction.IGNORE));
// Prints: "Here is a boy: 👦๐ฟ!"
The same applies for the methods EmojiParser#parseToHtmlHexadecimal(String)
and EmojiParser#parseToHtmlHexadecimal(String, FitzpatrickAction)
.
You can easily remove emojis from a string using one of the following methods:
EmojiParser#removeAllEmojis(String)
: removes all the emojis from the StringEmojiParser#removeAllEmojisExcept(String, Collection<Emoji>)
: removes all the emojis from the String, except the ones in the CollectionEmojiParser#removeEmojis(String, Collection<Emoji>)
: removes the emojis in the Collection from the String
For example:
String str = "An ๐awesome ๐string with a few ๐emojis!";
Collection<Emoji> collection = new ArrayList<Emoji>();
collection.add(EmojiManager.getForAlias("wink")); // This is ๐
System.out.println(EmojiParser.removeAllEmojis(str));
System.out.println(EmojiParser.removeAllEmojisExcept(str, collection));
System.out.println(EmojiParser.removeEmojis(str, collection));
// Prints:
// "An awesome string with a few emojis!"
// "An awesome string with a few ๐emojis!"
// "An ๐awesome ๐string with a few emojis!"
emoji-java originally used the data provided by the github/gemoji project. It is still based on it but has evolved since.
Here is a table of the available emojis and their aliases.
Emoji | Aliases | Emoji | Aliases |
---|---|---|---|
๐ฆ | frowning | ๐ผ | vhs |
๐ท | wine_glass | ๐ | person_with_pouting_face |
๐ณ | egg | ๐ช | circus_tent |
๐ท | saxophone | ๐ธ | smile_cat |
๐ต | tea | ๐ผ | panda_face |
arrow_heading_down | ๐ฉ | hankey, poop, shit | |
๐ฐ | rabbit | ๐ค | speedboat |
๐ | customs | ๐ถ | sake |
๐ | ram | ๐ช | mailbox_closed |
๐ | sunglasses | ๐ฒ | game_die |
๐ | rat | ๐จ๐ฉ๐ง๐ง | family_man_woman_girl_girl |
๐ฎ | white_flower | ๐ | cow2 |
๐ | poultry_leg | ๐ค | bust_in_silhouette |
๐ | wink | ๐ด | red_circle |
๐ฝ | running_shirt_with_sash | ๐ฐ | newspaper |
๐ | card_index | ๐ซ | tired_face |
๐ | high_heel | ๐ | closed_umbrella |
๐ | arrows_clockwise | ๐ต | dollar |
๐ | monorail | ๐ | pig2 |
โณ | golf | ๐ | sweat_smile |
๐ข | 1234 | ๐ด | u5408 |
โ | partly_sunny | ๐ฏ | do_not_litter |
๐ฏ | hushed | โ | hand, raised_hand |
๐ | see_no_evil | a | |
โ๏ธ | point_up | b | |
๐ค | abc | ๐ | mahjong |
๐ญ | no_smoking | ๐ซ | chocolate_bar |
๐ฅ | movie_camera | m | |
โญ | o | ๐ป | heart_eyes_cat |
๐ | high_brightness | ๐ | lips |
๐ | handbag | ๐ | full_moon_with_face |
โ๏ธ | v | ๐ฒ | calling |
โช | white_circle | โ | x |
๐ | bar_chart | ๐ | mouse2 |
9๏ธโฃ | nine | ๐ซ | couple |
๐น | video_camera | ๐ต | musical_note |
๐ถ | notes | ๐ฏ | dancers |
๐ฅ | inbox_tray | bangbang | |
๐ฝ | minidisc | ๐ | articulated_lorry |
๐ | blush | ๐ค | microphone |
๐ | melon | โ | heavy_division_sign |
โ | hand, raised_hand | ๐ฝ | statue_of_liberty |
๐ฉ | hankey, poop, shit | โ | grey_exclamation |
๐ | orange_book | ๐ | moon, waxing_gibbous_moon |
โน๏ธ | information_source | ๐ | shell |
๐ฉ๐ฉ๐ง๐ง | family_woman_woman_girl_girl | ๐ท | construction_worker |
๐ด | mobile_phone_off | ๐บ | smiley_cat |
๐ | loud_sound | ๐ด | sleeping |
๐ | jeans | ๐ | pear |
๐ | police_car | ๐ | busstop |
๐ | blue_car | ๐ | end |
๐ก | satellite | ๐ | whale2 |
๐ | wind_chime | ๐ | repeat_one |
๐ซ | ticket | โ | umbrella |
๐ | rice | โ๏ธ | scissors |
๐ท๏๏ธ | u6708 | โ | aquarius |
๐ถ | u6709 | โ | coffee |
airplane | ๐ | sweat | |
โ | cancer | ๐ช | family |
๐ | kissing_heart | ๐ | gift |
arrow_up_down | โฒ | fountain | |
ยฉ๏ธ | copyright | ๐ | waxing_crescent_moon |
๐ | heart_decoration | ๐ | pill |
๐ข | oden | ๐ | boar |
๐ซ | camel | ๐ง | |
โป๏ธ | white_medium_square | ๐ | tangerine |
๐ก | bulb | ๐ฒ | man_with_gua_pi_mao |
๐ | leopard | ๐ | earth_americas |
๐ซ | mailbox | ๐ | green_apple |
๐ค | zzz | ๐ | diamond_shape_with_a_dot_inside |
#๏ธโฃ | hash | ๐ซ | gun |
๐ | expressionless | ๐ฉ | triangular_flag_on_post |
๐ฉ | woman | ๐ | mountain_cableway |
๐ | tropical_fish | ๐ฉ | doughnut |
๐ | unamused | โซ | black_circle |
๐ | bikini | ๐ | top |
๐ | suspension_railway | โฌ | black_large_square |
๐ | raising_hand | ๐ป | restroom |
โ๏ธ | snowflake | ๐ฉ | tophat |
arrow_lower_left | โ | question | |
๐บ | womens | ๐ฝ | kissing_cat |
โต | boat, sailboat | ๐ณ | credit_card |
๐ฑ | 8ball | ๐ | rice_cracker |
โ | anchor | ๐น | rose |
spades | ๐ท | large_blue_diamond | |
๐ฐ | bride_with_veil | ๐ฃ | clock830 |
๐ฎ | cop | ๐ฎ | postbox |
๐ | meat_on_bone | ๐ฎ | cow |
๐ฒ | dragon_face | ๐ | pray |
๐ | neutral_face | ๐ท | pig |
๐ | radio_button | ๐ | pager |
โจ๏ธ | hotsprings | ๐ก | ferris_wheel |
๐ณ | deciduous_tree | โฉ๏ธ | leftwards_arrow_with_hook |
๐ | surfer | ๐ | new |
โพ | black_medium_small_square | ๐ | tanabata_tree |
๐จโค๏ธ๐๐จ | couplekiss_man_man | ๐ญ | thought_balloon |
๐ | racehorse | ๐ | no_good |
๐ | minibus | ๐ฆ | clock1130 |
๐ | carousel_horse | โผ๏ธ | black_medium_square |
๐ | chicken | ๐ณ | vibration_mode |
โฝ | white_medium_small_square | ๐ | runner, running |
๐ | beetle | ๐ฑ | bento |
โ | ophiuchus | ๐ | stuck_out_tongue_closed_eyes |
๐ด | flower_playing_cards | ๐ช | muscle |
๐ง | construction | ๐ | skull |
๐ | +1, thumbsup | ๐ | kissing_smiling_eyes |
๐ | blue_heart | ๐ | milky_way |
๐ผ | blossom | ๐ | ant |
๐ | rice_scene | ๐ฌ | mailbox_with_mail |
๐ข | cry | ๐ | memo, pencil |
๐ฏ | u6307 | ๐ | pineapple |
๐ | koko | ๐ผ | musical_score |
๐ง | droplet | ๐ฌ | speech_balloon |
๐ | u7121 | ๐ | ring |
๐ | octopus | ๐พ | japan |
๐ก | clock630 | ๐ข | ship |
๐ | name_badge | ๐ | last_quarter_moon_with_face |
๐ | lock_with_ink_pen | ๐ฐ | cake |
โ | leo | โป๏ธ | recycle |
โช๏ธ | arrow_right_hook | ๐ | oncoming_bus |
โ | scorpius | ๐ | mute |
๐ | electric_plug | ๐ | swimmer |
โ | negative_squared_cross_mark | ๐ถ | no_mouth |
๐ฃ | footprints | ๐ | bamboo |
๐ฝ | toilet | โ๏ธ | email, envelope |
๐ | first_quarter_moon_with_face | ๐ญ | telescope |
๐ฌ | department_store | ๐ | sunrise |
๐ | bridge_at_night | ๐ | battery |
2๏ธโฃ | two | ๐ | helicopter |
๐ง | anguished | ๐ | tractor |
๐ | ideograph_advantage | ๐ | black_joker |
๐ | dog2 | ๐ | worried |
๐ | watermelon | ๐ | trophy |
๐ฆ | flashlight | ๐ฉ๐ฉ๐ง๐ฆ | family_woman_woman_girl_boy |
๐ด | palm_tree | ๐ค | triumph |
๐จ | art | ๐ | underage |
๐ก | sandal | ๐ธ | children_crossing |
๐ | stuck_out_tongue | ๐ | speak_no_evil |
๐ | cupid | ๐ฆ | vertical_traffic_light |
๐ฉ | hankey, poop, shit | ๐ | shirt, tshirt |
โ | watch | ๐ | clap |
โก๏ธ | arrow_right | ๐น | chart |
๐ | clock430 | ๐ | point_down |
๐ | christmas_tree | ๐ | green_heart |
๐ฃ | bomb | ๐จ๐จ๐ง๐ง | family_man_man_girl_girl |
๐ญ | mouse | ๐ | disappointed |
๐ฃ | hatching_chick | ๐ซ | school |
๐ต | u6e80 | โ | taurus |
โฌ ๏ธ | arrow_left | ๐ง | atm |
๐ | four_leaf_clover | ๐ | unlock |
๐ | love_letter | ๐ | star2 |
โ๏ธ | phone, telephone | ๐ง | girl |
๐ | womans_hat | ๐ | railway_car |
๐ | bookmark | ๐ฆ | icecream |
๐บ | trumpet | ๐ฎ | video_game |
๐ | crocodile | ๐ฅ | boom, collision |
๐ | rabbit2 | ๐ | book, open_book |
๐ | truck | ๐ | chart_with_upwards_trend |
๐ | lipstick | ๐ | house |
๐ | wave | ๐จ๐จ๐ฆ | family_man_man_boy |
๐ | pizza | ๐ธ | cocktail |
๐บ | hibiscus | ๐ข | boot |
๐ | mans_shoe, shoe | ๐ฃ | fishing_pole_and_fish |
๐ด | yen | ๐ฑ | trident |
๐ฐ | slot_machine | ๐ | stars |
๐ฐ | cold_sweat | ๐ | clock3 |
๐ | clock2 | arrow_backward | |
๐ | clock5 | ๐บ | japanese_goblin |
๐ | clock4 | ๐ | clock1 |
๐ | keycap_ten | arrow_forward | |
๐ | clock7 | ๐ | clock6 |
๐ | clock9 | ๐ | clock8 |
parking | ๐ | clock230 | |
๐ | hear_no_evil | ๐ | heartbeat |
โฌ | white_large_square | 3๏ธโฃ | three |
๐ | heartpulse | ๐ | information_desk_person |
๐ธ | princess | ๐ | fax |
๐ | tram | ๐ | ambulance |
โ | white_check_mark | ๐ | cat2 |
๐ | moon, waxing_gibbous_moon | arrow_lower_right | |
โ๏ธ | heavy_check_mark | ๐ | ramen |
โ๏ธ | phone, telephone | ๐ | metro |
๐ | water_buffalo | ๐น | japanese_ogre |
๐ | necktie | ๐ | dolls |
๐ต | monkey_face | ๐ | capital_abcd |
๐ | flags | ๐ | pensive |
๐พ | space_invader | ๐ญ | lollipop |
๐ | train2 | ๐ฝ | alien |
๐ | file_folder | ๐ป | computer |
๐ฅ | fish_cake | left_right_arrow | |
๐ | fries | ๐ | left_luggage |
๐ | relieved | ๐ | grin |
๐ | ledger | ๐ฌ | two_men_holding_hands |
โ๏ธ | ballot_box_with_check | ๐ | strawberry |
arrow_heading_up | ๐พ | tennis | |
๐จ๐ฉ๐ฆ๐ฆ | family_man_woman_boy_boy | ๐ | shirt, tshirt |
๐ก | rage | ๐ | waning_crescent_moon |
๐น | joy_cat | ๐ฃ | persevere |
๐ฟ | crying_cat_face | ๐ช | door |
diamonds | ๐ | monkey | |
๐ | cyclone | ๐จ๐จ๐ฆ๐ฆ | family_man_man_boy_boy |
โ๏ธ | cloud | ๐ฑ | currency_exchange |
๐ป | mount_fuji | ๐ | oncoming_taxi |
๐ณ | whale | โ๏ธ | pencil2 |
๐ป | bear | ๐ | tada |
๐ | banana | ใฐ๏๏ธ | wavy_dash |
๐ป | violin | ๐ฆ | package |
๐ | open_file_folder | ๐ | facepunch, punch |
arrow_upper_left | ๐ | heart_eyes | |
๐ | rainbow | โ | heavy_minus_sign |
๐ข | loudspeaker | ๐ | earth_africa |
โบ | tent | ๐จ๐จ๐ง๐ฆ | family_man_man_girl_boy |
๐ฌ | microscope | ๐ฒ | bike |
relaxed | ๐ | joy | |
โซ | arrow_double_up | โณ๏ธ | eight_spoked_asterisk |
๐ฅ | hospital | ๐ฏ | honey_pot |
๐ | sheep | โณ | hourglass_flowing_sand |
โฝ | soccer | ๐ | chart_with_downwards_trend |
๐ | new_moon_with_face | ๐ | waning_gibbous_moon |
๐ | fire_engine | ๐ | earth_asia |
๐ | closed_book | ๐ | innocent |
๐ | kiss | ๐จโค๏ธ๐จ | couple_with_heart_man_man |
๐ณ | flushed | ๐ | hamburger |
๐ด | bicyclist | โ | hourglass |
๐ฅ | traffic_light | ๐ฎ | custard |
๐ฆ | cinema | ๐ | oncoming_police_car |
๐บ | beer | ๐ | smiley |
๐ | ab | ๐ฆ๐ฉ | ad |
๐ฆ๐ช | ae | ๐ฆ๐ซ | af |
๐ฆ๐ฌ | ag | ๐ | peach |
๐ฎ | izakaya_lantern, lantern | ๐ฆ๐ฎ | ai |
๐ | couple_with_heart | ๐ฑ | non-potable_water |
๐ | angry | ๐ฆ๐ฑ | al |
๐ฆ๐ฒ | am | ๐ฆ๐ด | ao |
๐ | round_pushpin | ๐ฆ๐ท | ar |
๐ฆ๐ธ | as | ๐ฆ๐น | at |
๐ฆ๐บ | au | ๐ฆ๐ผ | aw |
๐ | closed_lock_with_key | ๐ฆ๐ฟ | az |
๐ | sparkling_heart | ๐ง๐ฆ | ba |
๐ง๐ง | bb | ๐ฃ | mega |
๐ง๐ฉ | bd | ๐ | spaghetti |
๐ง๐ช | be | ๐ง๐ซ | bf |
๐ง๐ฌ | bg | ๐ง๐ญ | bh |
๐ก | aerial_tramway | ๐ง๐ฎ | bi |
๐ | broken_heart | ๐ง๐ฏ | bj |
๐ฅ | hatched_chick | ๐ | tomato |
๐ง๐ฒ | bm | ๐ง๐ณ | bn |
๐ | eyes | ๐ง๐ด | bo |
๐ง๐ท | br | ๐ง๐ธ | bs |
๐ง๐น | bt | ๐ | new_moon |
๐ง๐ผ | bw | ๐ง๐พ | by |
๐ง๐ฟ | bz | ๐จ | hotel |
๐ | baggage_claim | ๐ | volcano |
๐ | wedding | ๐ก | house_with_garden |
๐จ๐ฆ | ca | ๐จ๐ฉ | cd |
๐จ๐ซ | cf | ๐จ๐ฌ | cg |
๐จ๐ญ | ch | ๐จ๐ฎ | ci |
๐จ๐ฐ | ck | ๐จ๐ฑ | cl |
๐จ๐ฒ | cm | ๐จ๐ณ | cn |
๐ฐ | chestnut | ๐จ๐ด | co |
๐ช | dromedary_camel | ๐ป | sunflower |
๐ก | abcd | ๐จ๐ฐ | cr |
๐ก | blowfish | ๐จ๐จ๐ง | family_man_man_girl |
๐จ๐บ | cu | ๐จ๐ป | cv |
๐จ๐ผ | cw | ๐จ๐พ | cy |
๐จ๐ฉ๐ฆ | family_man_woman_boy | ๐จ๐ฟ | cz |
๐ | jack_o_lantern | โช๏ธ | black_small_square |
๐ฒ | astonished | ๐ | purse |
๐ง | penguin | ๐ฉ๐ช | de |
๐ | bee, honeybee | ๐ฉ๐ฉ๐ง | family_woman_woman_girl |
arrow_upper_right | ๐ฉ๐ฏ | dj | |
๐ต | mountain_bicyclist | ๐ฉ๐ฐ | dk |
๐ | middle_finger | ๐ฉ๐ฒ | dm |
โ | aries | ๐ฉ๐ด | do |
๐ต | older_woman | ๐ณ | bowling |
๐ | kissing_closed_eyes | ๐ฅ | busts_in_silhouette |
๐ฐ | beginner | ๐ฉ๐ฟ | dz |
๐ฆ | bird | warning | |
๐ฒ | black_square_button | ๐ช๐จ | ec |
๐ | train | ๐ช | convenience_store |
๐ช๐ช | ee | ๐ฌ | dolphin, flipper |
๐ณ | white_square_button | ๐ช๐ฌ | eg |
๐ | straight_ruler | ๐ซ | no_entry_sign |
๐ | ribbon | ๐ | mortar_board |
๐ช๐ท | er | ๐ช๐ธ | es |
๐ช๐น | et | โ | capricorn |
๐ผ | baby_bottle | ๐ฃ | rowboat |
๐ช | hocho, knife | ๐ | city_sunset |
๐ | tiger2 | ๐ | steam_locomotive |
๐ฉ | nut_and_bolt | ๐ | elephant |
๐ | purple_heart | ๐ | guardsman |
โจ | sparkles | ๐ | sparkler |
๐ซ๐ฎ | fi | ๐ซ๐ฏ | fj |
๐ | back | ๐ซ๐ด | fo |
๐ซ๐ท | fr | ๐ | santa |
๐ | yum | ๐ท | pound |
๐ | lemon | ๐ฌ๐ฆ | ga |
๐ฌ๐ง | gb | ๐ฌ๐ฉ | gd |
๐ฌ๐ช | ge | ๐ฌ๐ซ | gf |
๐ฒ | heavy_dollar_sign | ๐ฌ๐ญ | gh |
๐ฌ๐ฎ | gi | 6๏ธโฃ | six |
๐ | ok_woman | ๐ฌ๐ฒ | gm |
๐ฌ๐ณ | gn | ๐ฌ๐ต | gp |
๐ฌ๐ถ | gq | ๐ | football |
๐ฌ๐ท | gr | ๐ฌ๐น | gt |
๐ฌ๐บ | gu | ๐ฌ๐ผ | gw |
๐ | sun_with_face | ๐ฌ๐พ | gy |
๐ด | fork_and_knife | โช | rewind |
๐ญ | mailbox_with_no_mail | ๐ | stuck_out_tongue_winking_eye |
๐ถ | baby | ๐ | vulcan_salute |
๐ | no_bell | โ๏ธ | sparkle |
๐ญ๐ฐ | hk | ๐ค | european_post_office |
๐ญ๐ณ | hn | ๐ | memo, pencil |
๐ญ๐ท | hr | ๐ญ๐น | ht |
๐ | point_right | ๐ | clipboard |
๐ญ๐บ | hu | ๐ | soon |
๐ฟ | ski | ๐ | athletic_shoe |
4๏ธโฃ | four | ๐ | lock |
๐ฌ | clapper | ๐ฎ๐ฉ | id |
๐ฎ๐ช | ie | ๐ | crown |
๐ฎ๐ฑ | il | ๐ช | cookie |
โฌ๏ธ | arrow_up | ๐ฎ๐ณ | in |
๐ | laughing, satisfied | ๐ฉโค๏ธ๐๐ฉ | couplekiss_woman_woman |
๐ฎ๐ถ | iq | ๐ฎ๐ท | ir |
โฐ | curly_loop | ๐ฎ๐ธ | is |
๐ | triangular_ruler | ๐ | twisted_rightwards_arrows |
๐ฎ๐น | it | ๐ | bell |
๐ | curry | ๐ณ | man_with_turban |
๐ | clock12 | ๐ | clock11 |
๐ | clock10 | ๐ | telephone_receiver |
๐ธ | u7533 | โพ๏ธ | baseball |
๐ | rice_ball | ๐ | couplekiss |
๐ถ | dog | ๐ฏ๐ฒ | jm |
๐ฏ๐ด | jo | ๐ฏ๐ต | jp |
๐ | smirk | 8๏ธโฃ | eight |
๐ | mag | ๐ฌ | grimacing |
๐ฒ | evergreen_tree | ๐ | page_with_curl |
โ | libra | ๐ฐ๐ช | ke |
๐จ | man | ๐ท | camera |
๐ฐ๐ฌ | kg | ๐ฐ๐ญ | kh |
๐ฐ๐ฎ | ki | ๐ | first_quarter_moon |
๐ | bread | ๐ฐ๐ฒ | km |
๐ท | no_pedestrians | ๐ฐ๐ต | kp |
๐ | +1, thumbsup | ๐ฐ๐ท | kr |
๐ | low_brightness | โ | pisces |
๐ | trolleybus | ๐ฐ๐ผ | kw |
๐ฎ | izakaya_lantern, lantern | ๐น | mens |
๐ฐ๐พ | ky | ๐ฐ๐ฟ | kz |
๐ | green_book | ๐ฑ๐ฆ | la |
๐ฑ๐ง | lb | ๐ง | clock1230 |
โ๏ธ | heavy_multiplication_x | ๐จ๐ฉ๐ง | family_man_woman_girl |
๐ | crossed_flags | ๐ | notebook_with_decorative_cover |
๐ฑ๐ฎ | li | ๐ฑ๐ฐ | lk |
๐พ | feet, paw_prints | โ | snowman |
โซ๏ธ | white_small_square | ๐ฑ๐ท | lr |
๐ญ | sob | ๐ฑ๐ธ | ls |
๐ฑ๐น | lt | ๐ฑ๐บ | lu |
๐ฑ๐ป | lv | ๐ผ | angel |
๐ | school_satchel | ๐ข | office |
โด๏ธ | eight_pointed_black_star | ๐ข | anger |
๐ฑ๐พ | ly | ๐ฆ | sweat_drops |
๐ | smile | ๐ป | radio |
๐ | confused | ๐ฒ๐ฆ | ma |
๐ | sos | ๐ก | dango |
๐ฒ๐ฉ | md | ๐ฒ๐ช | me |
๐ฃ | sushi | ๐ฒ๐ฌ | mg |
๐ฒ๐ฐ | mk | ๐ฒ๐ฑ | ml |
๐ฒ๐ฒ | mm | ๐ฒ๐ณ | mn |
๐ฒ๐ด | mo | o2 | |
๐ฒ๐ต | mp | ๐ | -1, thumbsdown |
๐ข | turtle | ๐ฒ๐ถ | mq |
๐ฒ๐ท | mr | ๐ฒ๐ธ | ms |
๐ฒ๐น | mt | ๐ฒ๐ป | mv |
๐ฒ๐ผ | mw | ๐ฐ | potable_water |
๐ฒ๐ฝ | mx | ๐ฒ๐พ | my |
๐ฒ๐ฟ | mz | โค๏ธ | heart |
๐ง | wrench | ๐ค | baby_chick |
๐ณ๐ฆ | na | ๐ณ๐จ | nc |
๐ณ๐ช | ne | ๐ณ๐ฌ | ng |
๐ณ๐ฎ | ni | ๐ | -1, thumbsdown |
๐ณ๐ฑ | nl | ๐ | birthday |
๐ | sunrise_over_mountains | ๐ณ๐ด | no |
๐ณ๐ต | np | ๐จ | hammer |
๐ฌ | candy | ๐ฝ | pig_nose |
๐ณ๐บ | nu | ๐ต | no_mobile_phones |
๐ | bow | ๐ค | clock930 |
๐ณ๐ฟ | nz | ๐ฆ | boy |
๐ฃ | symbols | ๐ | kimono |
๐ | syringe | ๐จ | incoming_envelope |
๐ฌ | smoking | ๐ | repeat |
๐ | gift_heart | ๐ฒ | u7981 |
๐ | ok | ๐ด๐ฒ | om |
๐ | on | ๐ | rooster |
๐ฉ | poodle | ๐พ | floppy_disk |
๐ฏ | postal_horn | ๐ฏ | six_pointed_star |
๐ | ox | ๐ | horse_racing |
โ | grey_question | ๐ฏ | 100 |
๐ต๐ฆ | pa | ๐ต๐ช | pe |
๐ง | shaved_ice | ๐ต๐ฌ | pg |
๐ต๐ญ | ph | ๐ณ | no_bicycles |
๐ต๐ฐ | pk | ๐ต๐ฑ | pl |
๐ฅ | clock1030 | โ | no_entry |
โต | boat, sailboat | ๐ | yellow_heart |
๐ต๐ท | pr | ๐ฏ | japanese_castle |
๐ต๐ธ | ps | ๐ต๐น | pt |
๐ | rocket | ๐ต๐ผ | pw |
ยฎ๏ธ | registered | ๐ต๐พ | py |
๐ฑ | scream | ๐ฉ๐ฉ๐ฆ๐ฆ | family_woman_woman_boy_boy |
๐ถ๐ฆ | qa | ๐ | last_quarter_moon |
๐ | bathtub | ๐ฆ | bank |
๐ | dvd | โ | exclamation, heavy_exclamation_mark |
๐ฅ | fire | ๐ฐ | european_castle |
๐ | runner, running | ๐ | mushroom |
๐ | two_hearts | ๐บ | u55b6 |
๐ | point_left | ๐ฑ | person_with_blond_hair |
๐น | hamster | โก | zap |
๐ | taxi | ๐ | haircut |
๐ฏ | tiger | ๐ | accept |
๐ด | horse | ๐บ | seat |
๐ถ | large_orange_diamond | ๐พ | ear_of_rice |
๐ท๐ช | re | ๐ | person_frowning |
๐ท๐ด | ro | โฉ | fast_forward |
๐ฟ | shower | ๐ท๐ธ | rs |
๐ค | fried_shrimp | ๐ท๐บ | ru |
๐ข | clock730 | ๐ท๐ผ | rw |
๐ | nail_care | โ | fist |
๐ธ๐ฆ | sa | ๐ฎ | open_mouth |
๐ธ๐ง | sb | ๐ธ๐จ | sc |
๐ธ๐ฉ | sd | ๐ธ๐ช | se |
๐ธ๐ฌ | sg | ๐ธ๐ฎ | si |
๐ต | cactus | ๐ธ๐ฐ | sk |
๐ธ๐ฑ | sl | ๐ธ๐ฒ | sm |
๐ธ๐ณ | sn | ๐ | free |
interrobang | ๐ธ๐ด | so | |
๐ | key | โ๏ธ | email, envelope |
๐ธ๐ท | sr | ๐ | calendar |
๐ธ๐ธ | ss | ๐ธ๐น | st |
๐ธ๐ป | sv | โญ | star |
๐บ | wolf | ๐ฉ | weary |
๐ธ๐พ | sy | 1๏ธโฃ | one |
๐ธ๐ฟ | sz | ๐ฃ | post_office |
๐พ | pouting_cat | ใฝ๏๏ธ | part_alternation_mark |
โฝ | fuelpump | ๐น๐จ | tc |
๐น๐ซ | tf | ๐น๐ฌ | tg |
๐น | tropical_drink | ๐น๐ญ | th |
๐ | bug | ๐น๐ฏ | tj |
๐ | fish | ๐น๐ฑ | tl |
๐น๐ฒ | tm | ๐ผ | smirk_cat |
๐น๐ณ | tn | ๐ | eyeglasses |
๐น๐ด | to | ๐น๐ท | tr |
๐ | laughing, satisfied | ๐น๐น | tt |
๐ | bus | ๐น๐ป | tv |
๐ต | dizzy_face | ๐ง | headphones |
๐น๐ฟ | tz | โฌ | arrow_double_down |
7๏ธโฃ | seven | โ | exclamation, heavy_exclamation_mark |
๐ | light_rail | ๐บ๐ฆ | ua |
0๏ธโฃ | zero | ๐ | revolving_hearts |
๐บ๐ฌ | ug | ๐ | leaves |
๐ฎ | put_litter_in_its_place | โฟ | loop |
๐ | mag_right | ๐ | up |
5๏ธโฃ | five | ๐บ๐ธ | us |
๐ฎ | crystal_ball | ๐น | u5272 |
๐บ๐พ | uy | ๐บ๐ฟ | uz |
โ๏ธ | black_nib | ๐ผ | baby_symbol |
๐ป๐ช | ve | ๐ป๐ฌ | vg |
๐ป๐ฎ | vi | ๐ | ocean |
๐ | raised_hands | ๐ป๐ณ | vn |
๐ | full_moon | ๐ฝ | arrow_down_small |
๐ | vs | ๐ป | small_red_triangle_down |
๐ | grapes | ๐ป๐บ | vu |
โฟ | wheelchair | ๐ถ | euro |
๐ | night_with_stars | ๐ | clock530 |
๐ด | older_man | ๐พ | wc |
๐ | apple | ๐จ | rotating_light |
๐ช | sleepy | ๐ผ๐ธ | ws |
๐ | bath | ๐ | pushpin |
๐ท | mask | ๐ฒ | stew |
๐ | bookmark_tabs | ๐ท | tulip |
๐ฑ | seedling | ๐ธ | guitar |
๐ฉโค๏ธ๐ฉ | couple_with_heart_woman_woman | โฐ | alarm_clock |
๐ | mans_shoe, shoe | ๐ณ | u7a7a |
๐ | dragon | ๐พ๐ช | ye |
๐จ | ice_cream | ๐ | arrows_counterclockwise |
๐ | kissing | ๐ | maple_leaf |
๐ | paperclip | ๐ญ | performing_arts |
๐ | rugby_football | ๐ | eggplant |
๐ซ | dizzy | ๐ | ok_hand |
๐ฟ๐ฆ | za | ๐ | scroll |
๐ | goat | ๐ฑ | iphone |
๐ฉ | envelope_with_arrow | ๐ | dancer |
๐ | books | ๐ฟ๐ฒ | zm |
๐ | globe_with_meridians | ๐ธ | cherry_blossom |
๐ฉ๐ฉ๐ฆ | family_woman_woman_boy | ๐ฟ๐ผ | zw |
๐ | open_hands | ๐ | clock330 |
๐ | confounded | ๐ | tongue |
โช | church | ๐ | city_sunrise |
๐ | mountain_railway | ๐ฟ | moyai |
ใ๏๏ธ | secret | ๐ | fireworks |
๐ | gem | ๐ | facepunch, punch |
๐ฏ | dart | ๐ป | ghost |
๐ | ear | ๐ | barber |
๐ธ | money_with_wings | ๐ | smiling_imp |
๐ | passport_control | ๐ | pouch |
๐ | cool | ๐ข | roller_coaster |
๐ฐ | moneybag | ๐ | confetti_ball |
๐ | date | ๐ | dress |
๐ | snail | ๐ค | outbox_tray |
๐ | blue_book | ๐น | small_blue_diamond |
โ | sagittarius | ๐ธ | small_orange_diamond |
๐ | cherries | ๐ฝ | corn |
๐ | sound | ๐ | grinning |
๐ | snowboarder | ๐ | womans_clothes |
๐ | bullettrain_front | ๐ | fallen_leaf |
โ | heavy_plus_sign | ๐ | basketball |
๐ฌ | dolphin, flipper | ๐ธ | frog |
๐ | oncoming_automobile | ๐ถ | signal_strength |
๐ | massage | โ๏ธ | sunny |
๐ | book, open_book | ๐ | notebook |
๐จ | koala | ๐ผ | briefcase |
๐ | point_up_2 | ๐ญ | two_women_holding_hands |
๐ | bouquet | ๐ | sweet_potato |
๐ | car, red_car | ๐ | bee, honeybee |
๐ช | hocho, knife | ๐ผ | arrow_up_small |
โ | gemini | ๐ฅ | boom, collision |
๐น | musical_keyboard | ๐ | speaker |
๐บ | small_red_triangle | ๐จ | dash |
๐ | clock130 | ๐ | scream_cat |
๐ | snake | ใ๏๏ธ | congratulations |
๐ | link | ๐ฟ | imp |
๐ต | large_blue_circle | ๐ | checkered_flag |
๐ | car, red_car | ๐ถ | walking |
๐ฑ | cat | ๐ป | beers |
๐ | station | hearts | |
clubs | ๐พ | feet, paw_prints | |
๐ฟ | herb | ๐ | page_facing_up |
๐ | nose | ๐ | crescent_moon |
๐ | foggy | ๐ญ | factory |
๐ | balloon | ๐ | bullettrain_side |
๐ฅ | disappointed_relieved | ๐จ | fearful |
๐ฉ | love_hotel | โ | virgo |
๐ผ | tokyo_tower | โฌ๏ธ | arrow_down |