The missing emoji library for java.
emoji-java is a lightweight java library that helps you use Emojis in your java applications.
You can refer DEVELOPMENT.md.
<dependency>
  <groupId>com.vdurmont</groupId>
  <artifactId>emoji-java</artifactId>
  <version>4.0.0</version>
</dependency>You can also download the project, build it with mvn package and add the generated jar to your buildpath.
compile 'com.vdurmont:emoji-java:4.0.0'- Use releases tab to download the jar directly.
- Download JSON-java dependency from http://mvnrepository.com/artifact/org.json/json.
The EmojiManager provides several static methods to search through the emojis database:
- getForTagreturns all the emojis for a given tag
- getForAliasreturns the emoji for an alias
- getAllreturns all the emojis
- isEmojichecks if a string is an emoji
You can also query the metadata:
- getAllTagsreturns the available tags
Or get everything:
- getAllreturns all the emojis
An Emoji is a POJO (plain old java object), which provides the following methods:
- getUnicodereturns the unicode representation of the emoji
- getUnicode(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 an- UnsupportedOperationException. If the provided Fitzpatrick is null, this method will return the unicode of the emoji.
- getDescriptionreturns the (optional) description of the emoji
- getAliasesreturns a list of aliases for this emoji
- getTagsreturns a list of tags for this emoji
- getHtmlDecimalreturns an html decimal representation of the emoji
- getHtmlHexadecimalreturns an html decimal representation of the emoji
- supportsFitzpatrickreturns 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 String
- EmojiParser#removeAllEmojisExcept(String, Collection<Emoji>): removes all the emojis from the String, except the ones in the Collection
- EmojiParser#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!"You can search a string of mixed emoji/non-emoji characters and have all of the emoji characters returned as a Collection.
- EmojiParser#extractEmojis(String): returns all emojis as a Collection. This will include duplicates if emojis are present more than once.
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 | 
|---|---|---|---|
| ๐ | smile | ๐ | smiley | 
| ๐ | grinning | ๐ | blush | 
| โบ | relaxed | ๐ | wink | 
| ๐ | heart_eyes | ๐ | kissing_heart | 
| ๐ | kissing_closed_eyes | ๐ | kissing | 
| ๐ | kissing_smiling_eyes | ๐ | stuck_out_tongue_winking_eye | 
| ๐ | stuck_out_tongue_closed_eyes | ๐ | stuck_out_tongue | 
| ๐ณ | flushed | ๐ | grin | 
| ๐ | pensive | ๐ | relieved | 
| ๐ | unamused | ๐ | disappointed | 
| ๐ฃ | persevere | ๐ข | cry | 
| ๐ | joy | ๐ญ | sob | 
| ๐ช | sleepy | ๐ฅ | disappointed_relieved | 
| ๐ฐ | cold_sweat | ๐ | sweat_smile | 
| ๐ | sweat | ๐ฉ | weary | 
| ๐ซ | tired_face | ๐จ | fearful | 
| ๐ฑ | scream | ๐ | angry | 
| ๐ก | rage | ๐ค | triumph | 
| ๐ | confounded | ๐ | laughing, satisfied | 
| ๐ | yum | ๐ท | mask | 
| ๐ | sunglasses | ๐ด | sleeping | 
| ๐ต | dizzy_face | ๐ฒ | astonished | 
| ๐ | worried | ๐ฆ | frowning | 
| ๐ง | anguished | ๐ | smiling_imp | 
| ๐ฟ | imp | ๐ฎ | open_mouth | 
| ๐ฌ | grimacing | ๐ | neutral_face | 
| ๐ | confused | ๐ฏ | hushed | 
| ๐ถ | no_mouth | ๐ | innocent | 
| ๐ | smirk | ๐ | expressionless | 
| ๐ฒ | man_with_gua_pi_mao | ๐ณ | man_with_turban | 
| ๐ฎ | cop | ๐ท | construction_worker | 
| ๐ | guardsman | ๐ถ | baby | 
| ๐ฆ | boy | ๐ง | girl | 
| ๐จ | man | ๐ฉ | woman | 
| ๐ด | older_man | ๐ต | older_woman | 
| ๐ฑ | person_with_blond_hair | ๐ผ | angel | 
| ๐ธ | princess | ๐บ | smiley_cat | 
| ๐ธ | smile_cat | ๐ป | heart_eyes_cat | 
| ๐ฝ | kissing_cat | ๐ผ | smirk_cat | 
| ๐ | scream_cat | ๐ฟ | crying_cat_face | 
| ๐น | joy_cat | ๐พ | pouting_cat | 
| ๐น | japanese_ogre | ๐บ | japanese_goblin | 
| ๐ | see_no_evil | ๐ | hear_no_evil | 
| ๐ | speak_no_evil | ๐ | skull | 
| ๐ฝ | alien | ๐ฉ | hankey, poop, shit | 
| ๐ฅ | fire | โจ | sparkles | 
| ๐ | star2 | ๐ซ | dizzy | 
| ๐ฅ | boom, collision | ๐ข | anger | 
| ๐ฆ | sweat_drops | ๐ง | droplet | 
| ๐ค | zzz | ๐จ | dash | 
| ๐ | ear | ๐ | eyes | 
| ๐ | nose | ๐ | tongue | 
| ๐ | lips | ๐ | +1, thumbsup | 
| ๐ | -1, thumbsdown | ๐ | ok_hand | 
| ๐ | facepunch, punch | โ | fist | 
| โ | v | ๐ | wave | 
| โ | hand, raised_hand | ๐ | open_hands | 
| ๐ | point_up_2 | ๐ | point_down | 
| ๐ | point_right | ๐ | point_left | 
| ๐ | raised_hands | ๐ | pray | 
| โ | point_up | ๐ | clap | 
| ๐ช | muscle | ๐ถ | walking | 
| ๐ | runner, running | ๐ | dancer | 
| ๐ซ | couple | ๐ช | family | 
| ๐ฌ | two_men_holding_hands | ๐ญ | two_women_holding_hands | 
| ๐ | couplekiss | ๐ | couple_with_heart | 
| ๐ฏ | dancers | ๐ | ok_woman | 
| ๐ | no_good | ๐ | information_desk_person | 
| ๐ | raising_hand | ๐ | massage | 
| ๐ | haircut | ๐ | nail_care | 
| ๐ฐ | bride_with_veil | ๐ | person_with_pouting_face | 
| ๐ | person_frowning | ๐ | bow | 
| ๐โโ๏ธ | woman_bow, female_bow | ๐โโ๏ธ | man_bow, male_bow | 
| ๐ฉ | tophat | ๐ | crown | 
| ๐ | womans_hat | ๐ | athletic_shoe | 
| ๐ | mans_shoe, shoe | ๐ก | sandal | 
| ๐ | high_heel | ๐ข | boot | 
| ๐ | shirt, tshirt | ๐ | necktie | 
| ๐ | womans_clothes | ๐ | dress | 
| ๐ฝ | running_shirt_with_sash | ๐ | jeans | 
| ๐ | kimono | ๐ | bikini | 
| ๐ผ | briefcase | ๐ | handbag | 
| ๐ | pouch | ๐ | purse | 
| ๐ | eyeglasses | ๐ | ribbon | 
| ๐ | closed_umbrella | ๐ | lipstick | 
| ๐ | yellow_heart | ๐ | blue_heart | 
| ๐ | purple_heart | ๐ | green_heart | 
| โค | heart | ๐ | broken_heart | 
| ๐ | heartpulse | ๐ | heartbeat | 
| ๐ | two_hearts | ๐ | sparkling_heart | 
| ๐ | revolving_hearts | ๐ | cupid | 
| ๐ | love_letter | ๐ | kiss | 
| ๐ | ring | ๐ | gem | 
| ๐ค | bust_in_silhouette | ๐ฅ | busts_in_silhouette | 
| ๐ฌ | speech_balloon | ๐ฃ | footprints | 
| ๐ญ | thought_balloon | ๐ถ | dog | 
| ๐บ | wolf | ๐ฑ | cat | 
| ๐ญ | mouse | ๐น | hamster | 
| ๐ฐ | rabbit | ๐ธ | frog | 
| ๐ฏ | tiger | ๐จ | koala | 
| ๐ป | bear | ๐ท | pig | 
| ๐ฝ | pig_nose | ๐ฎ | cow | 
| ๐ | boar | ๐ต | monkey_face | 
| ๐ | monkey | ๐ด | horse | 
| ๐ | sheep | ๐ | elephant | 
| ๐ผ | panda_face | ๐ง | penguin | 
| ๐ฆ | bird | ๐ค | baby_chick | 
| ๐ฅ | hatched_chick | ๐ฃ | hatching_chick | 
| ๐ | chicken | ๐ | snake | 
| ๐ข | turtle | ๐ | bug | 
| ๐ | bee, honeybee | ๐ | ant | 
| ๐ | beetle | ๐ | snail | 
| ๐ | octopus | ๐ | shell | 
| ๐ | tropical_fish | ๐ | fish | 
| ๐ฌ | dolphin, flipper | ๐ณ | whale | 
| ๐ | whale2 | ๐ | cow2 | 
| ๐ | ram | ๐ | rat | 
| ๐ | water_buffalo | ๐ | tiger2 | 
| ๐ | rabbit2 | ๐ | dragon | 
| ๐ | racehorse | ๐ | goat | 
| ๐ | rooster | ๐ | dog2 | 
| ๐ | pig2 | ๐ | mouse2 | 
| ๐ | ox | ๐ฒ | dragon_face | 
| ๐ก | blowfish | ๐ | crocodile | 
| ๐ซ | camel | ๐ช | dromedary_camel | 
| ๐ | leopard | ๐ | cat2 | 
| ๐ฉ | poodle | ๐พ | feet, paw_prints | 
| ๐ | bouquet | ๐ธ | cherry_blossom | 
| ๐ท | tulip | ๐ | four_leaf_clover | 
| ๐น | rose | ๐ป | sunflower | 
| ๐บ | hibiscus | ๐ | maple_leaf | 
| ๐ | leaves | ๐ | fallen_leaf | 
| ๐ฟ | herb | ๐พ | ear_of_rice | 
| ๐ | mushroom | ๐ต | cactus | 
| ๐ด | palm_tree | ๐ฒ | evergreen_tree | 
| ๐ณ | deciduous_tree | ๐ฐ | chestnut | 
| ๐ฑ | seedling | ๐ผ | blossom | 
| ๐ | globe_with_meridians | ๐ | sun_with_face | 
| ๐ | full_moon_with_face | ๐ | new_moon_with_face | 
| ๐ | new_moon | ๐ | waxing_crescent_moon | 
| ๐ | first_quarter_moon | ๐ | moon, waxing_gibbous_moon | 
| ๐ | full_moon | ๐ | waning_gibbous_moon | 
| ๐ | last_quarter_moon | ๐ | waning_crescent_moon | 
| ๐ | last_quarter_moon_with_face | ๐ | first_quarter_moon_with_face | 
| ๐ | crescent_moon | ๐ | earth_africa | 
| ๐ | earth_americas | ๐ | earth_asia | 
| ๐ | volcano | ๐ | milky_way | 
| ๐ | stars | โญ | star | 
| โ | sunny | โ | partly_sunny | 
| โ | cloud | โก | zap | 
| โ | umbrella | โ | snowflake | 
| โ | snowman | ๐ | cyclone | 
| ๐ | foggy | ๐ | rainbow | 
| ๐ | ocean | ๐ | bamboo | 
| ๐ | gift_heart | ๐ | dolls | 
| ๐ | school_satchel | ๐ | mortar_board | 
| ๐ | flags | ๐ | fireworks | 
| ๐ | sparkler | ๐ | wind_chime | 
| ๐ | rice_scene | ๐ | jack_o_lantern | 
| ๐ป | ghost | ๐ | santa | 
| ๐ | christmas_tree | ๐ | gift | 
| ๐ | tanabata_tree | ๐ | tada | 
| ๐ | confetti_ball | ๐ | balloon | 
| ๐ | crossed_flags | ๐ฎ | crystal_ball | 
| ๐ฅ | movie_camera | ๐ท | camera | 
| ๐น | video_camera | ๐ผ | vhs | 
| ๐ฟ | cd | ๐ | dvd | 
| ๐ฝ | minidisc | ๐พ | floppy_disk | 
| ๐ป | computer | ๐ฑ | iphone | 
| โ | phone, telephone | ๐ | telephone_receiver | 
| ๐ | pager | ๐ | fax | 
| ๐ก | satellite_antenna | ๐บ | tv | 
| ๐ป | radio | ๐ | loud_sound | 
| ๐ | sound | ๐ | speaker | 
| ๐ | mute | ๐ | bell | 
| ๐ | no_bell | ๐ข | loudspeaker | 
| ๐ฃ | mega | โณ | hourglass_flowing_sand | 
| โ | hourglass | โฐ | alarm_clock | 
| โ | watch | ๐ | unlock | 
| ๐ | lock | ๐ | lock_with_ink_pen | 
| ๐ | closed_lock_with_key | ๐ | key | 
| ๐ | mag_right | ๐ก | bulb | 
| ๐ฆ | flashlight | ๐ | high_brightness | 
| ๐ | low_brightness | ๐ | electric_plug | 
| ๐ | battery | ๐ | mag | 
| ๐ | bathtub | ๐ | bath | 
| ๐ฟ | shower | ๐ฝ | toilet | 
| ๐ง | wrench | ๐ฉ | nut_and_bolt | 
| ๐จ | hammer | ๐ช | door | 
| ๐ฌ | smoking | ๐ฃ | bomb | 
| ๐ซ | gun | ๐ช | hocho, knife | 
| ๐ | pill | ๐ | syringe | 
| ๐ฐ | moneybag | ๐ด | yen | 
| ๐ต | dollar | ๐ท | pound | 
| ๐ถ | euro | ๐ณ | credit_card | 
| ๐ธ | money_with_wings | ๐ฒ | calling | 
| ๐ง | ๐ฅ | inbox_tray | |
| ๐ค | outbox_tray | โ | email, envelope | 
| ๐ฉ | envelope_with_arrow | ๐จ | incoming_envelope | 
| ๐ฏ | postal_horn | ๐ซ | mailbox | 
| ๐ช | mailbox_closed | ๐ฌ | mailbox_with_mail | 
| ๐ญ | mailbox_with_no_mail | ๐ฎ | postbox | 
| ๐ฆ | package | ๐ | memo, pencil | 
| ๐ | page_facing_up | ๐ | page_with_curl | 
| ๐ | bookmark_tabs | ๐ | bar_chart | 
| ๐ | chart_with_upwards_trend | ๐ | chart_with_downwards_trend | 
| ๐ | scroll | ๐ | clipboard | 
| ๐ | date | ๐ | calendar | 
| ๐ | card_index | ๐ | file_folder | 
| ๐ | open_file_folder | โ | scissors | 
| ๐ | pushpin | ๐ | paperclip | 
| โ | black_nib | โ | pencil2 | 
| ๐ | straight_ruler | ๐ | triangular_ruler | 
| ๐ | closed_book | ๐ | green_book | 
| ๐ | blue_book | ๐ | orange_book | 
| ๐ | notebook | ๐ | notebook_with_decorative_cover | 
| ๐ | ledger | ๐ | books | 
| ๐ | book, open_book | ๐ | bookmark | 
| ๐ | name_badge | ๐ฌ | microscope | 
| ๐ญ | telescope | ๐ฐ | newspaper | 
| ๐จ | art | ๐ฌ | clapper | 
| ๐ค | microphone | ๐ง | headphones | 
| ๐ผ | musical_score | ๐ต | musical_note | 
| ๐ถ | notes | ๐น | musical_keyboard | 
| ๐ป | violin | ๐บ | trumpet | 
| ๐ท | saxophone | ๐ธ | guitar | 
| ๐พ | space_invader | ๐ฎ | video_game | 
| ๐ | black_joker | ๐ด | flower_playing_cards | 
| ๐ | mahjong | ๐ฒ | game_die | 
| ๐ฏ | dart | ๐ | football | 
| ๐ | basketball | โฝ | soccer | 
| โพ | baseball | ๐พ | tennis | 
| ๐ฑ | 8ball | ๐ | rugby_football | 
| ๐ณ | bowling | โณ | golf | 
| ๐ต | mountain_bicyclist | ๐ด | bicyclist | 
| ๐ | checkered_flag | ๐ | horse_racing | 
| ๐ | trophy | ๐ฟ | ski | 
| ๐ | snowboarder | ๐ | swimmer | 
| ๐ | surfer | ๐ฃ | fishing_pole_and_fish | 
| โ | coffee | ๐ต | tea | 
| ๐ถ | sake | ๐ผ | baby_bottle | 
| ๐บ | beer | ๐ป | beers | 
| ๐ธ | cocktail | ๐น | tropical_drink | 
| ๐ท | wine_glass | ๐ด | fork_and_knife | 
| ๐ | pizza | ๐ | hamburger | 
| ๐ | fries | ๐ | poultry_leg | 
| ๐ | meat_on_bone | ๐ | spaghetti | 
| ๐ | curry | ๐ค | fried_shrimp | 
| ๐ฑ | bento | ๐ฃ | sushi | 
| ๐ฅ | fish_cake | ๐ | rice_ball | 
| ๐ | rice_cracker | ๐ | rice | 
| ๐ | ramen | ๐ฒ | stew | 
| ๐ข | oden | ๐ก | dango | 
| ๐ณ | cooking | ๐ | bread | 
| ๐ฉ | doughnut | ๐ฎ | custard | 
| ๐ฆ | icecream | ๐จ | ice_cream | 
| ๐ง | shaved_ice | ๐ | birthday | 
| ๐ฐ | cake | ๐ช | cookie | 
| ๐ซ | chocolate_bar | ๐ฌ | candy | 
| ๐ญ | lollipop | ๐ฏ | honey_pot | 
| ๐ | apple | ๐ | green_apple | 
| ๐ | tangerine | ๐ | lemon | 
| ๐ | cherries | ๐ | grapes | 
| ๐ | watermelon | ๐ | strawberry | 
| ๐ | peach | ๐ | melon | 
| ๐ | banana | ๐ | pear | 
| ๐ | pineapple | ๐ | sweet_potato | 
| ๐ | eggplant | ๐ | tomato | 
| ๐ฝ | corn | ๐ | house | 
| ๐ก | house_with_garden | ๐ซ | school | 
| ๐ข | office | ๐ฃ | post_office | 
| ๐ฅ | hospital | ๐ฆ | bank | 
| ๐ช | convenience_store | ๐ฉ | love_hotel | 
| ๐จ | hotel | ๐ | wedding | 
| โช | church | ๐ฌ | department_store | 
| ๐ค | european_post_office | ๐ | city_sunrise | 
| ๐ | city_sunset | ๐ฏ | japanese_castle | 
| ๐ฐ | european_castle | โบ | tent | 
| ๐ญ | factory | ๐ผ | tokyo_tower | 
| ๐พ | japan | ๐ป | mount_fuji | 
| ๐ | sunrise_over_mountains | ๐ | sunrise | 
| ๐ | night_with_stars | ๐ฝ | statue_of_liberty | 
| ๐ | bridge_at_night | ๐ | carousel_horse | 
| ๐ก | ferris_wheel | โฒ | fountain | 
| ๐ข | roller_coaster | ๐ข | ship | 
| โต | boat, sailboat | ๐ค | speedboat | 
| ๐ฃ | rowboat | โ | anchor | 
| ๐ | rocket | โ | airplane | 
| ๐บ | seat | ๐ | helicopter | 
| ๐ | steam_locomotive | ๐ | tram | 
| ๐ | station | ๐ | mountain_railway | 
| ๐ | train2 | ๐ | bullettrain_side | 
| ๐ | bullettrain_front | ๐ | light_rail | 
| ๐ | metro | ๐ | monorail | 
| ๐ | train | ๐ | railway_car | 
| ๐ | trolleybus | ๐ | bus | 
| ๐ | oncoming_bus | ๐ | blue_car | 
| ๐ | oncoming_automobile | ๐ | car, red_car | 
| ๐ | taxi | ๐ | oncoming_taxi | 
| ๐ | articulated_lorry | ๐ | truck | 
| ๐จ | rotating_light | ๐ | police_car | 
| ๐ | oncoming_police_car | ๐ | fire_engine | 
| ๐ | ambulance | ๐ | minibus | 
| ๐ฒ | bike | ๐ก | aerial_tramway | 
| ๐ | suspension_railway | ๐ | mountain_cableway | 
| ๐ | tractor | ๐ | barber | 
| ๐ | busstop | ๐ซ | ticket | 
| ๐ฆ | vertical_traffic_light | ๐ฅ | traffic_light | 
| โ | warning | ๐ง | construction | 
| ๐ฐ | beginner | โฝ | fuelpump | 
| ๐ฎ | izakaya_lantern, lantern | ๐ฐ | slot_machine | 
| โจ | hotsprings | ๐ฟ | moyai | 
| ๐ช | circus_tent | ๐ญ | performing_arts | 
| ๐ | round_pushpin | ๐ฉ | triangular_flag_on_post | 
| 1โฃ | one | 2โฃ | two | 
| 3โฃ | three | 4โฃ | four | 
| 5โฃ | five | 6โฃ | six | 
| 7โฃ | seven | 8โฃ | eight | 
| 9โฃ | nine | 0โฃ | zero | 
| ๐ | keycap_ten | ๐ข | 1234 | 
| #โฃ | hash | ๐ฃ | symbols | 
| โฌ | arrow_up | โฌ | arrow_down | 
| โฌ | arrow_left | โก | arrow_right | 
| ๐ | capital_abcd | ๐ก | abcd | 
| ๐ค | abc | โ | arrow_upper_right | 
| โ | arrow_upper_left | โ | arrow_lower_right | 
| โ | arrow_lower_left | โ | left_right_arrow | 
| โ | arrow_up_down | ๐ | arrows_counterclockwise | 
| โ | arrow_backward | โถ | arrow_forward | 
| ๐ผ | arrow_up_small | ๐ฝ | arrow_down_small | 
| โฉ | leftwards_arrow_with_hook | โช | arrow_right_hook | 
| โน | information_source | โช | rewind | 
| โฉ | fast_forward | โซ | arrow_double_up | 
| โฌ | arrow_double_down | โคต | arrow_heading_down | 
| โคด | arrow_heading_up | ๐ | ok | 
| ๐ | twisted_rightwards_arrows | ๐ | repeat | 
| ๐ | repeat_one | ๐ | new | 
| ๐ | up | ๐ | cool | 
| ๐ | free | ๐ | squared_ng | 
| ๐ถ | signal_strength | ๐ฆ | cinema | 
| ๐ | koko | ๐ฏ | u6307 | 
| ๐ณ | u7a7a | ๐ต | u6e80 | 
| ๐ด | u5408 | ๐ฒ | u7981 | 
| ๐ | ideograph_advantage | ๐น | u5272 | 
| ๐บ | u55b6 | ๐ถ | u6709 | 
| ๐ | u7121 | ๐ป | restroom | 
| ๐น | mens | ๐บ | womens | 
| ๐ผ | baby_symbol | ๐พ | wc | 
| ๐ฐ | potable_water | ๐ฎ | put_litter_in_its_place | 
| ๐ ฟ | parking | โฟ | wheelchair | 
| ๐ญ | no_smoking | ๐ท | u6708 | 
| ๐ธ | u7533 | ๐ | sa | 
| โ | m | ๐ | passport_control | 
| ๐ | baggage_claim | ๐ | left_luggage | 
| ๐ | customs | ๐ | accept | 
| ใ | secret | ใ | congratulations | 
| ๐ | cl | ๐ | sos | 
| ๐ | id | ๐ซ | no_entry_sign | 
| ๐ | underage | ๐ต | no_mobile_phones | 
| ๐ฏ | do_not_litter | ๐ฑ | non-potable_water | 
| ๐ณ | no_bicycles | ๐ท | no_pedestrians | 
| ๐ธ | children_crossing | โ | no_entry | 
| โณ | eight_spoked_asterisk | โ | sparkle | 
| โ | negative_squared_cross_mark | โ | white_check_mark | 
| โด | eight_pointed_black_star | ๐ | heart_decoration | 
| ๐ | vs | ๐ณ | vibration_mode | 
| ๐ด | mobile_phone_off | ๐ ฐ | a | 
| ๐ ฑ | b | ๐ | ab | 
| ๐ พ | o2 | ๐ | diamond_shape_with_a_dot_inside | 
| โฟ | loop | โป | recycle | 
| โ | aries | โ | taurus | 
| โ | gemini | โ | cancer | 
| โ | leo | โ | virgo | 
| โ | libra | โ | scorpius | 
| โ | sagittarius | โ | capricorn | 
| โ | aquarius | โ | pisces | 
| โ | ophiuchus | ๐ฏ | six_pointed_star | 
| ๐ง | atm | ๐น | chart | 
| ๐ฒ | heavy_dollar_sign | ๐ฑ | currency_exchange | 
| ยฉ | copyright | ยฎ | registered | 
| โข | tm | โ | x | 
| โผ | bangbang | โ | interrobang | 
| โ | exclamation, heavy_exclamation_mark | โ | question | 
| โ | grey_exclamation | โ | grey_question | 
| โญ | o | ๐ | top | 
| ๐ | end | ๐ | back | 
| ๐ | on | ๐ | soon | 
| ๐ | arrows_clockwise | ๐ | clock12 | 
| ๐ง | clock1230 | ๐ | clock1 | 
| ๐ | clock130 | ๐ | clock2 | 
| ๐ | clock230 | ๐ | clock3 | 
| ๐ | clock330 | ๐ | clock4 | 
| ๐ | clock430 | ๐ | clock5 | 
| ๐ | clock530 | ๐ | clock6 | 
| ๐ | clock7 | ๐ | clock8 | 
| ๐ | clock9 | ๐ | clock10 | 
| ๐ | clock11 | ๐ก | clock630 | 
| ๐ข | clock730 | ๐ฃ | clock830 | 
| ๐ค | clock930 | ๐ฅ | clock1030 | 
| ๐ฆ | clock1130 | โ | heavy_multiplication_x | 
| โ | heavy_plus_sign | โ | heavy_minus_sign | 
| โ | heavy_division_sign | โ | spades | 
| โฅ | hearts | โฃ | clubs | 
| โฆ | diamonds | ๐ฎ | white_flower | 
| ๐ฏ | 100 | โ | heavy_check_mark | 
| โ | ballot_box_with_check | ๐ | radio_button | 
| ๐ | link | โฐ | curly_loop | 
| ใฐ | wavy_dash | ใฝ | part_alternation_mark | 
| ๐ฑ | trident | โผ | black_medium_square | 
| โป | white_medium_square | โพ | black_medium_small_square | 
| โฝ | white_medium_small_square | โช | black_small_square | 
| โซ | white_small_square | ๐บ | small_red_triangle | 
| ๐ฒ | black_square_button | ๐ณ | white_square_button | 
| โซ | black_circle | โช | white_circle | 
| ๐ด | red_circle | ๐ต | large_blue_circle | 
| ๐ป | small_red_triangle_down | โฌ | white_large_square | 
| โฌ | black_large_square | ๐ถ | large_orange_diamond | 
| ๐ท | large_blue_diamond | ๐ธ | small_orange_diamond | 
| ๐น | small_blue_diamond | ๐ฆ๐ซ | af | 
| ๐ฆ๐ฑ | al | ๐ฉ๐ฟ | dz | 
| ๐ฆ๐ธ | as | ๐ฆ๐ฉ | ad | 
| ๐ฆ๐ด | ao | ๐ฆ๐ฎ | ai | 
| ๐ฆ๐ฌ | ag | ๐ฆ๐ท | ar | 
| ๐ฆ๐ฒ | am | ๐ฆ๐ผ | aw | 
| ๐ฆ๐บ | au | ๐ฆ๐น | at | 
| ๐ฆ๐ฟ | az | ๐ง๐ธ | bs | 
| ๐ง๐ญ | bh | ๐ง๐ฉ | bd | 
| ๐ง๐ง | bb | ๐ง๐พ | by | 
| ๐ง๐ช | be | ๐ง๐ฟ | bz | 
| ๐ง๐ฏ | bj | ๐ง๐ฒ | bm | 
| ๐ง๐น | bt | ๐ง๐ด | bo | 
| ๐ง๐ฆ | ba | ๐ง๐ผ | bw | 
| ๐ง๐ท | br | ๐ป๐ฌ | vg | 
| ๐ง๐ณ | bn | ๐ง๐ฌ | bg | 
| ๐ง๐ซ | bf | ๐ง๐ฎ | bi | 
| ๐ฐ๐ญ | kh | ๐จ๐ฒ | cm | 
| ๐จ๐ฆ | ca | ๐จ๐ป | cv | 
| ๐ฐ๐พ | ky | ๐จ๐ซ | cf | 
| ๐จ๐ฑ | cl_flag | ๐จ๐ณ | cn | 
| ๐จ๐ด | co | ๐ฐ๐ฒ | km | 
| ๐จ๐ฉ | cd_flag | ๐จ๐ฌ | cg | 
| ๐จ๐ฐ | ck | ๐จ๐ท | cr | 
| ๐ญ๐ท | hr | ๐จ๐บ | cu | 
| ๐จ๐ผ | cw | ๐จ๐พ | cy | 
| ๐จ๐ฟ | cz | ๐ฉ๐ฐ | dk | 
| ๐ฉ๐ฏ | dj | ๐ฉ๐ฒ | dm | 
| ๐ฉ๐ด | do | ๐ช๐จ | ec | 
| ๐ช๐ฌ | eg | ๐ธ๐ป | sv | 
| ๐ฌ๐ถ | gq | ๐ช๐ท | er | 
| ๐ช๐ช | ee | ๐ช๐น | et | 
| ๐ซ๐ด | fo | ๐ซ๐ฏ | fj | 
| ๐ซ๐ฎ | fi | ๐ซ๐ท | fr | 
| ๐ฌ๐ซ | gf | ๐น๐ซ | tf | 
| ๐ฌ๐ฆ | ga | ๐ฌ๐ฒ | gm | 
| ๐ฌ๐ช | ge | ๐ฉ๐ช | de | 
| ๐ฌ๐ญ | gh | ๐ฌ๐ฎ | gi | 
| ๐ฌ๐ท | gr | ๐ฌ๐ฉ | gd | 
| ๐ฌ๐ต | gp | ๐ฌ๐บ | gu | 
| ๐ฌ๐น | gt | ๐ฌ๐ณ | gn | 
| ๐ฌ๐ผ | gw | ๐ฌ๐พ | gy | 
| ๐ญ๐น | ht | ๐ญ๐ณ | hn | 
| ๐ญ๐ฐ | hk | ๐ญ๐บ | hu | 
| ๐ฎ๐ธ | is | ๐ฎ๐ณ | in | 
| ๐ฎ๐ฉ | id_flag | ๐ฎ๐ท | ir | 
| ๐ฎ๐ถ | iq | ๐ฎ๐ช | ie | 
| ๐ฎ๐ฑ | il | ๐ฎ๐น | it | 
| ๐จ๐ฎ | ci | ๐ฏ๐ฒ | jm | 
| ๐ฏ๐ต | jp | ๐ฏ๐ด | jo | 
| ๐ฐ๐ฟ | kz | ๐ฐ๐ช | ke | 
| ๐ฐ๐ฎ | ki | ๐ฐ๐ผ | kw | 
| ๐ฐ๐ฌ | kg | ๐ฑ๐ฆ | la | 
| ๐ฑ๐ป | lv | ๐ฑ๐ง | lb | 
| ๐ฑ๐ธ | ls | ๐ฑ๐ท | lr | 
| ๐ฑ๐พ | ly | ๐ฑ๐ฎ | li | 
| ๐ฑ๐น | lt | ๐ฑ๐บ | lu | 
| ๐ฒ๐ด | mo | ๐ฒ๐ฐ | mk | 
| ๐ฒ๐ฌ | mg | ๐ฒ๐ผ | mw | 
| ๐ฒ๐พ | my | ๐ฒ๐ป | mv | 
| ๐ฒ๐ฑ | ml | ๐ฒ๐น | mt | 
| ๐ฒ๐ถ | mq | ๐ฒ๐ท | mr | 
| ๐ฒ๐ฝ | mx | ๐ฒ๐ฉ | md | 
| ๐ฒ๐ณ | mn | ๐ฒ๐ช | me | 
| ๐ฒ๐ธ | ms | ๐ฒ๐ฆ | ma | 
| ๐ฒ๐ฟ | mz | ๐ฒ๐ฒ | mm | 
| ๐ณ๐ฆ | na | ๐ณ๐ต | np | 
| ๐ณ๐ฑ | nl | ๐ณ๐จ | nc | 
| ๐ณ๐ฟ | nz | ๐ณ๐ฎ | ni | 
| ๐ณ๐ช | ne | ๐ณ๐ฌ | ng | 
| ๐ณ๐บ | nu | ๐ฐ๐ต | kp | 
| ๐ฒ๐ต | mp | ๐ณ๐ด | no | 
| ๐ด๐ฒ | om | ๐ต๐ฐ | pk | 
| ๐ต๐ผ | pw | ๐ต๐ธ | ps | 
| ๐ต๐ฆ | pa | ๐ต๐ฌ | pg | 
| ๐ต๐พ | py | ๐ต๐ช | pe | 
| ๐ต๐ญ | ph | ๐ต๐ฑ | pl | 
| ๐ต๐น | pt | ๐ต๐ท | pr | 
| ๐ถ๐ฆ | qa | ๐ท๐ช | re | 
| ๐ท๐ด | ro | ๐ท๐บ | ru | 
| ๐ท๐ผ | rw | ๐ผ๐ธ | ws | 
| ๐ธ๐ฒ | sm | ๐ธ๐น | st | 
| ๐ธ๐ฆ | sa_flag | ๐ธ๐ณ | sn | 
| ๐ท๐ธ | rs | ๐ธ๐จ | sc | 
| ๐ธ๐ฑ | sl | ๐ธ๐ฌ | sg | 
| ๐ธ๐ฐ | sk | ๐ธ๐ฎ | si | 
| ๐ธ๐ง | sb | ๐ธ๐ด | so | 
| ๐ฟ๐ฆ | za | ๐ฐ๐ท | kr | 
| ๐ธ๐ธ | ss | ๐ช๐ธ | es | 
| ๐ฑ๐ฐ | lk | ๐ธ๐ฉ | sd | 
| ๐ธ๐ท | sr | ๐ธ๐ฟ | sz | 
| ๐ธ๐ช | se | ๐จ๐ญ | ch | 
| ๐ธ๐พ | sy | ๐น๐ฏ | tj | 
| ๐น๐ฟ | tz | ๐น๐ญ | th | 
| ๐น๐ฑ | tl | ๐น๐ฌ | tg | 
| ๐น๐ด | to | ๐น๐น | tt | 
| ๐น๐ณ | tn | ๐น๐ท | tr | 
| ๐น๐ฒ | tm_flag | ๐น๐จ | tc | 
| ๐น๐ป | tv_flag | ๐บ๐ฌ | ug | 
| ๐บ๐ฆ | ua | ๐ฆ๐ช | ae | 
| ๐ฌ๐ง | gb | ๐บ๐พ | uy | 
| ๐บ๐ธ | us | ๐ป๐ฎ | vi | 
| ๐บ๐ฟ | uz | ๐ป๐จ | vc | 
| ๐ป๐บ | vu | ๐ป๐ช | ve | 
| ๐ป๐ณ | vn | ๐พ๐ช | ye | 
| ๐ฟ๐ฒ | zm | ๐ฟ๐ผ | zw | 
| ๐ฆ | regional_indicator_symbol_a | ๐ง | regional_indicator_symbol_b | 
| ๐จ | regional_indicator_symbol_c | ๐ฉ | regional_indicator_symbol_d | 
| ๐ช | regional_indicator_symbol_e | ๐ซ | regional_indicator_symbol_f | 
| ๐ฌ | regional_indicator_symbol_g | ๐ญ | regional_indicator_symbol_h | 
| ๐ฎ | regional_indicator_symbol_i | ๐ฏ | regional_indicator_symbol_j | 
| ๐ฐ | regional_indicator_symbol_k | ๐ฑ | regional_indicator_symbol_l | 
| ๐ฒ | regional_indicator_symbol_m | ๐ณ | regional_indicator_symbol_n | 
| ๐ด | regional_indicator_symbol_o | ๐ต | regional_indicator_symbol_p | 
| ๐ถ | regional_indicator_symbol_q | ๐ท | regional_indicator_symbol_r | 
| ๐ธ | regional_indicator_symbol_s | ๐น | regional_indicator_symbol_t | 
| ๐บ | regional_indicator_symbol_u | ๐ป | regional_indicator_symbol_v | 
| ๐ผ | regional_indicator_symbol_w | ๐ฝ | regional_indicator_symbol_x | 
| ๐พ | regional_indicator_symbol_y | ๐ฟ | regional_indicator_symbol_z | 
| ๐จโ๐ฉโ๐ฆ | family_man_woman_boy | ๐จโ๐ฉโ๐ง | family_man_woman_girl | 
| ๐จโ๐ฉโ๐ฆโ๐ฆ | family_man_woman_boy_boy | ๐จโ๐ฉโ๐งโ๐ง | family_man_woman_girl_girl | 
| ๐จโ๐ฉโ๐งโ๐ฆ | family_man_woman_girl_boy | ๐ฉโ๐ฉโ๐ฆ | family_woman_woman_boy | 
| ๐ฉโ๐ฉโ๐ง | family_woman_woman_girl | ๐ฉโ๐ฉโ๐งโ๐ฆ | family_woman_woman_girl_boy | 
| ๐ฉโ๐ฉโ๐ฆโ๐ฆ | family_woman_woman_boy_boy | ๐ฉโ๐ฉโ๐งโ๐ง | family_woman_woman_girl_girl | 
| ๐จโ๐จโ๐ฆ | family_man_man_boy | ๐จโ๐จโ๐ง | family_man_man_girl | 
| ๐จโ๐จโ๐งโ๐ฆ | family_man_man_girl_boy | ๐จโ๐จโ๐ฆโ๐ฆ | family_man_man_boy_boy | 
| ๐จโ๐จโ๐งโ๐ง | family_man_man_girl_girl | ๐ฉโโคโ๐ฉ | couple_with_heart_woman_woman | 
| ๐จโโคโ๐จ | couple_with_heart_man_man | ๐ฉโโค๏ธโ๐โ๐ฉ | couplekiss_woman_woman | 
| โ๐จโค๏ธ๐โ๐จ | couplekiss_man_man | ๐ | vulcan_salute | 
| ๐ | middle_finger | ๐ | slightly_smiling, slight_smile | 
| ๐ค | hugging, hug, hugs | ๐ค | thinking, think, thinker | 
| ๐ | eye_roll, rolling_eyes | ๐ค | zipper_mouth, zip_it, sealed_lips, lips_sealed | 
| ๐ค | nerd, nerdy | โน | frowning_face | 
| ๐ | slightly_frowning | ๐ | upside_down, flipped_face | 
| ๐ค | sick, ill, thermometer_face | ๐ค | injured, head_bandage, head_bandaged, bandaged | 
| ๐ค | money_mouth, money_face | โ | helmet_white_cross | 
| ๐ต | detective, sleuth, private_eye, spy | ๐ฃ | speaking_head_in_silhouette | 
| ๐ด | hovering_man, levitating_man | ๐ค | horns_sign, rock_on, heavy_metal, devil_fingers | 
| ๐ | raised_hand_with_fingers_splayed, splayed_hand | โ | writing, writing_hand | 
| ๐ | eye | โฃ | exclamation_heart | 
| ๐ณ | hole | ๐ฏ | right_anger_bubble, zig_zag_bubble | 
| ๐ถ | dark_sunglasses | ๐ | shopping_bags | 
| ๐ฟ | prayer_beads, dhikr_beads, rosary_beads | โ | skull_crossbones | 
| ๐ค | robot_face, bot_face | ๐ฆ | lion_face, cute_lion, timid_lion | 
| ๐ฆ | unicorn_face | ๐ฟ | chipmunk, squirrel | 
| ๐ฆ | turkey | ๐ | dove, dove_peace | 
| ๐ฆ | crab | ๐ท | spider | 
| ๐ธ | spider_web, cobweb | ๐ฆ | scorpion | 
| ๐ต | rosette | โ | shamrock, st_patrick | 
| ๐ถ | hot_pepper, chili_pepper, spice, spicy | ๐ง | cheese | 
| ๐ญ | hot_dog | ๐ฎ | taco | 
| ๐ฏ | burrito, wrap | ๐ฟ | popcorn | 
| ๐พ | champagne, sparkling_wine | ๐ฝ | fork_knife_plate | 
| ๐บ | amphora, jar, vase | ๐บ | world_map | 
| ๐ | snow_capped_mountain, mont_fuji | โฐ | mountain | 
| ๐ | camping, campsite | ๐ | breach | 
| ๐ | desert | ๐ | desert_island | 
| ๐ | national_park | ๐ | stadium | 
| ๐ | classical_building | ๐ | building_construction, crane | 
| ๐ | house_buildings, multiple_houses | ๐ | cityscape | 
| ๐ | derelict_house, old_house, abandoned_house | ๐ | worship_building, worship_place, religious_building, religious_place | 
| ๐ | kaaba, mecca | ๐ | mosque, minaret, domed_roof | 
| ๐ | synagogue, temple, jewish | ๐ผ | picture_frame, painting, gallery | 
| ๐ข | oil_drum | ๐ฃ | motorway, highway, road, interstate, freeway | 
| ๐ค | railway_track | ๐ณ | passenger_ship | 
| โด | ferry | ๐ฅ | motor_boat | 
| ๐ฉ | small_airplane | ๐ซ | airplane_departure, take_off | 
| ๐ฌ | airplane_arriving, airplane_arrival, landing | ๐ฐ | satellite | 
| ๐ | bellhop_bell | ๐ | sleeping_accommodation | 
| ๐ | bed, bedroom | ๐ | couch_lamp, couch, sofa, lounge | 
| โฑ | stopwatch | โฒ | timer_clock | 
| ๐ฐ | mantelpiece_clock | ๐ก | thermometer, hot_weather, temperature | 
| โ | thunder_cloud_rain | ๐ค | white_sun_small_cloud | 
| ๐ฅ | white_sun_behind_cloud | ๐ฆ | white_sun_behind_cloud_rain | 
| ๐ง | cloud_rain | ๐จ | cloud_snow | 
| ๐ฉ | cloud_lightning | ๐ช | cloud_tornado | 
| ๐ซ | fog | ๐ฌ | wind_blowing_face, mother_nature, blowing_wind | 
| โ | open_umbrella | โฑ | planted_umbrella, umbrella_on_ground | 
| โ | snowman_with_snow, snowing_snowman | โ | comet, light_beam, blue_beam | 
| ๐ | menorah, candelabrum, chanukiah | ๐ | military_medal, military_decoration | 
| ๐ | reminder_ribbon, awareness_ribbon | ๐ | film_frames | 
| ๐ | admission_ticket | ๐ท | label | 
| ๐ | golfer, golf_club | ๐โ๏ธ | man_golfer, male_golfer, man_golfing, male_golfing | 
| ๐โโ๏ธ | woman_golfer, female_golfer, woman_golfing, female_golfing | โธ | ice_skate, ice_skating | 
| โท | skier | โน | person_with_ball | 
| ๐ | weight_lifter | ๐ | racing_car, formula_one, f1 | 
| ๐ | racing_motorcycle, motorcycle, motorbike | ๐ | sports_medal, sports_decoration | 
| ๐ | cricket | ๐ | volleyball | 
| ๐ | field_hockey | ๐ | ice_hockey | 
| ๐ | table_tennis, ping_pong | ๐ธ | badminton | 
| ๐น | joystick | โญ | black_right_pointing_double_triangle_with_vertical_bar | 
| โฏ | black_right_pointing_triangle_with_double_vertical_bar | โฎ | black_left_pointing_double_triangle_with_vertical_bar | 
| โธ | double_vertical_bar | โน | black_square_for_stop | 
| โบ | black_circle_for_record | ๐ | studio_microphone | 
| ๐ | level_slider | ๐ | control_knobs | 
| *โฃ | keycap_asterisk, star_keycap | ๐ฅ | desktop_computer, pc_tower, imac | 
| ๐จ | printer | โจ | keyboard | 
| ๐ฑ | computer_mouse, three_button_mouse | ๐ฒ | trackball | 
| ๐ฝ | film_projector | ๐ธ | camera_flash | 
| ๐ฏ | candle | ๐ | rolled_up_newspaper, newspaper_delivery | 
| ๐ณ | ballot, ballot_box | ๐ | lower_left_fountain_pen | 
| ๐ | lower_left_ballpoint_pen | ๐ | lower_left_paintbrush | 
| ๐ | lower_left_crayon | ๐ | card_index_dividers | 
| ๐ | spiral_note_pad | ๐ | spiral_calendar_pad | 
| ๐ | linked_paperclips | ๐ | card_file_box | 
| ๐ | file_cabinet | ๐ | wastebasket | 
| ๐ | old_key | โ | pick | 
| โ | hammer_and_pick | ๐ | hammer_and_wrench | 
| โ | gear | ๐ | compression | 
| โ | alembic | โ | scales, scales_of_justice | 
| โ | chains | ๐ก | dagger, dagger_knife, knife_weapon | 
| โ | crossed_swords | ๐ก | shield | 
| ๐น | bow_and_arrow, bow_arrow, archery | โฐ | coffin, funeral, casket | 
| โฑ | funeral_urn | ๐ณ | waving_white_flag | 
| ๐ด | waving_black_flag | โ | fleur_de_lis, scouts | 
| โ | atom, atom_symbol | ๐ | om_symbol, pranava, aumkara, omkara | 
| โก | star_of_david | โธ | wheel_of_dharma | 
| โฏ | yin_yang | โ | latin_cross, christian_cross | 
| โฆ | orthodox_cross | โฉ | shinto_shrine, kami_no_michi | 
| โช | star_and_crescent, star_crescent | โฎ | peace_symbol, peace_sign | 
| โข | radioactive, radioactive_symbol, radioactive_sign | โฃ | biohazard, biohazard_symbol, biohazard_sign | 
| ๐จ | left_speech_bubble | ๐โ๐จ | eye_in_speech_bubble, i_am_a_witness | 
| ๐คฃ | rolling_on_the_floor_laughing, rofl | ๐ค | face_with_cowboy_hat, cowboy | 
| ๐คก | clown_face, clown | ๐คฅ | lying_face | 
| ๐คค | drooling_face | ๐คข | nauseated_face | 
| ๐คง | sneezing_face | ๐คด | prince | 
| ๐คถ | mother_christmas | ๐คต | man_in_tuxedo | 
| ๐คท | shrug | ๐คฆ | face_palm | 
| ๐คฐ | pregnant_woman | ๐บ | man_dancing | 
| ๐คณ | selfie | ๐ค | hand_with_index_and_middle_fingers_crossed | 
| ๐ค | call_me_hand | ๐ค | left-facing_fist | 
| ๐ค | right-facing_fist | ๐ค | raised_back_of_hand | 
| ๐ค | handshake | ๐ค | black_heart | 
| ๐ฆ | gorilla | ๐ฆ | fox_face | 
| ๐ฆ | deer | ๐ฆ | rhinoceros | 
| ๐ฆ | bat | ๐ฆ | eagle | 
| ๐ฆ | duck | ๐ฆ | owl | 
| ๐ฆ | lizard | ๐ฆ | shark | 
| ๐ฆ | shrimp | ๐ฆ | squid | 
| ๐ฆ | butterfly | ๐ฅ | wilted_flower | 
| ๐ฅ | kiwifruit | ๐ฅ | avocado | 
| ๐ฅ | potato | ๐ฅ | carrot | 
| ๐ฅ | cucumber | ๐ฅ | peanuts | 
| ๐ฅ | croissant | ๐ฅ | baguette_bread | 
| ๐ฅ | pancakes | ๐ฅ | bacon | 
| ๐ฅ | stuffed_flatbread | ๐ฅ | egg | 
| ๐ฅ | shallow_pan_of_food | ๐ฅ | green_salad | 
| ๐ฅ | glass_of_milk | ๐ฅ | clinking_glasses | 
| ๐ฅ | tumbler_glass | ๐ฅ | spoon | 
| ๐ | octagonal_sign, stop_sign | ๐ด | scooter | 
| ๐ต | motor_scooter | ๐ถ | canoe | 
| ๐ฅ | first_place_medal | ๐ฅ | second_place_medal | 
| ๐ฅ | third_place_medal | ๐ฅ | boxing_glove | 
| ๐ฅ | martial_arts_uniform | ๐คธ | person_doing_cartwheel | 
| ๐คธโโ๏ธ | man_doing_cartwheel, male_doing_cartwheel | ๐คธโโ๏ธ | woman_doing_cartwheel, female_doing_cartwheel | 
| ๐คผ | wrestlers | ๐คผโโ๏ธ | man_wrestlers, male_wrestlers | 
| ๐คผโโ๏ธ | woman_wrestlers, female_wrestlers | ๐คฝ | water_polo | 
| ๐คฝโโ๏ธ | man_water_polo, male_water_polo | ๐คฝโโ๏ธ | woman_water_polo, female_water_polo | 
| ๐คพ | handball | ๐คพโโ๏ธ | man_handball, male_handball | 
| ๐คพโโ๏ธ | woman_handball, female_handball | ๐คบ | fencer | 
| ๐ฅ | goal_net | ๐คน | juggling | 
| ๐คนโโ๏ธ | man_juggling, male_juggling | ๐คนโโ๏ธ | woman_juggling, female_juggling | 
| ๐ฅ | drum_with_drumsticks | ๐ | shopping_trolley, shopping_cart | 
| ๐จโโ๏ธ | male_health_worker, man_health_worker | ๐ฉโโ๏ธ | female_health_worker, woman_health_worker | 
| ๐จโ๐ | male_student, man_student | ๐ฉโ๐ | female_student, woman_student | 
| ๐จโ๐ซ | male_teacher, man_teacher | ๐ฉโ๐ซ | female_teacher, woman_teacher | 
| ๐จโ๐พ | male_farmer, man_farmer | ๐ฉโ๐พ | female_farmer, woman_farmer | 
| ๐จโ๐ณ | male_cook, man_cook | ๐ฉโ๐ณ | female_cook, woman_cook | 
| ๐จโ๐ง | male_mechanic, man_mechanic | ๐ฉโ๐ง | female_mechanic, woman_mechanic | 
| ๐จโ๐ญ | male_factory_worker, man_factory_worker | ๐ฉโ๐ญ | female_factory_worker, woman_factory_worker | 
| ๐จโ๐ผ | male_office_worker, man_office_worker | ๐ฉโ๐ผ | female_office_worker, woman_office_worker | 
| ๐จโ๐ฌ | male_scientist, man_scientist | ๐ฉโ๐ฌ | female_scientist, woman_scientist | 
| ๐จโ๐ป | male_technologist, man_technologist | ๐ฉโ๐ป | female_technologist, woman_technologist | 
| ๐จโ๐ค | male_singer, man_singer | ๐ฉโ๐ค | female_singer, woman_singer | 
| ๐จโ๐จ | male_artist, man_artist | ๐ฉโ๐จ | female_artist, woman_artist | 
| ๐จโ | male_pilot, man_pilot | ๐ฉโ | female_pilot, woman_pilot | 
| ๐จโ๐ | male_astronaut, man_astronaut | ๐ฉโ๐ | female_astronaut, woman_astronaut | 
| ๐จโ๐ | male_firefighter, man_firefighter | ๐ฉโ๐ | female_firefighter, woman_firefighter | 
| ๐คฆโโ๏ธ | female_facepalm, woman_facepalm | ๐คทโโ๏ธ | male_shrug, man_shrug | 
| ๐คทโโ๏ธ | female_shrug, woman_shrug | โ๏ธ | medical_symbol, staff_of_aesculapius | 
| ๐จโโ๏ธ | man_judge, male_judge | ๐ฉโโ๏ธ | woman_judge, female_judge |