Last active
January 29, 2018 08:33
-
-
Save tanakahisateru/291ce2fc99b2fa143ede0bbc91cf87b5 to your computer and use it in GitHub Desktop.
Generates emoji data mapped from GitHub emoji name to fully-qualified codepoints
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'set' | |
| require 'net/http' | |
| require 'json' | |
| gh_emoji_json = Net::HTTP.get URI('https://api.github.com/emojis') | |
| gh_emoji = JSON.load gh_emoji_json | |
| exit 1 unless gh_emoji.kind_of? Hash | |
| gh_emoji2cps = Hash.new | |
| non_unicode_gh_emojis = Set.new | |
| gh_emoji.each do |name, url| | |
| m = /\/unicode\/(.+?)\.png\?/.match url | |
| gh_emoji2cps[name] = m[1].split('-').map {|cp| cp.hex.to_s 16 } if m | |
| non_unicode_gh_emojis.add name unless m | |
| end | |
| def parse_emoji_test_text(text) | |
| lines = text.split "\n" | |
| all = Set.new | |
| lines.each do |line| | |
| m = /^(.+?)\s*?;\s*fully-qualified/.match line | |
| all.add m[1].split(/\s+/).map {|cp| cp.hex.to_s 16 } if m | |
| end | |
| all | |
| end | |
| emoji_test_text = Net::HTTP.get URI('https://unicode.org/Public/emoji/5.0/emoji-test.txt') | |
| emoji_set = parse_emoji_test_text emoji_test_text | |
| IGNORED_CODES = ["200d", "fe0f"] | |
| def sequential_match(sequence, sub_sequence) | |
| sequence = sequence.clone | |
| sub_sequence.each do |e1| | |
| loop do | |
| return false if sequence.empty? | |
| e0 = sequence.shift | |
| break if e0 == e1 | |
| return false unless IGNORED_CODES.include? e0 | |
| end | |
| end | |
| sequence.all? {|code| IGNORED_CODES.include? code } | |
| end | |
| emoji_name_to_cps = Hash.new | |
| unmatched_emojis = Hash.new | |
| gh_emoji2cps.each do |name, loose_cps| | |
| # p name, loose_cps | |
| cps = emoji_set.find {|cps| sequential_match(cps, loose_cps) } | |
| emoji_name_to_cps[name] = cps.join('-') if cps | |
| unmatched_emojis[name] = loose_cps.join('-') unless cps | |
| end | |
| # emoji_name_to_cps['__github__'] = non_unicode_gh_emojis.to_a | |
| # emoji_name_to_cps['__unmatched__'] = unmatched_emojis | |
| print JSON.pretty_generate emoji_name_to_cps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "+1": "1f44d", | |
| "-1": "1f44e", | |
| "100": "1f4af", | |
| "1234": "1f522", | |
| "1st_place_medal": "1f947", | |
| "2nd_place_medal": "1f948", | |
| "3rd_place_medal": "1f949", | |
| "8ball": "1f3b1", | |
| "a": "1f170-fe0f", | |
| "ab": "1f18e", | |
| "abc": "1f524", | |
| "abcd": "1f521", | |
| "accept": "1f251", | |
| "aerial_tramway": "1f6a1", | |
| "afghanistan": "1f1e6-1f1eb", | |
| "airplane": "2708-fe0f", | |
| "aland_islands": "1f1e6-1f1fd", | |
| "alarm_clock": "23f0", | |
| "albania": "1f1e6-1f1f1", | |
| "alembic": "2697-fe0f", | |
| "algeria": "1f1e9-1f1ff", | |
| "alien": "1f47d", | |
| "ambulance": "1f691", | |
| "american_samoa": "1f1e6-1f1f8", | |
| "amphora": "1f3fa", | |
| "anchor": "2693", | |
| "andorra": "1f1e6-1f1e9", | |
| "angel": "1f47c", | |
| "anger": "1f4a2", | |
| "angola": "1f1e6-1f1f4", | |
| "angry": "1f620", | |
| "anguilla": "1f1e6-1f1ee", | |
| "anguished": "1f627", | |
| "ant": "1f41c", | |
| "antarctica": "1f1e6-1f1f6", | |
| "antigua_barbuda": "1f1e6-1f1ec", | |
| "apple": "1f34e", | |
| "aquarius": "2652", | |
| "argentina": "1f1e6-1f1f7", | |
| "aries": "2648", | |
| "armenia": "1f1e6-1f1f2", | |
| "arrow_backward": "25c0-fe0f", | |
| "arrow_double_down": "23ec", | |
| "arrow_double_up": "23eb", | |
| "arrow_down": "2b07-fe0f", | |
| "arrow_down_small": "1f53d", | |
| "arrow_forward": "25b6-fe0f", | |
| "arrow_heading_down": "2935-fe0f", | |
| "arrow_heading_up": "2934-fe0f", | |
| "arrow_left": "2b05-fe0f", | |
| "arrow_lower_left": "2199-fe0f", | |
| "arrow_lower_right": "2198-fe0f", | |
| "arrow_right": "27a1-fe0f", | |
| "arrow_right_hook": "21aa-fe0f", | |
| "arrow_up": "2b06-fe0f", | |
| "arrow_up_down": "2195-fe0f", | |
| "arrow_up_small": "1f53c", | |
| "arrow_upper_left": "2196-fe0f", | |
| "arrow_upper_right": "2197-fe0f", | |
| "arrows_clockwise": "1f503", | |
| "arrows_counterclockwise": "1f504", | |
| "art": "1f3a8", | |
| "articulated_lorry": "1f69b", | |
| "artificial_satellite": "1f6f0-fe0f", | |
| "aruba": "1f1e6-1f1fc", | |
| "asterisk": "2a-fe0f-20e3", | |
| "astonished": "1f632", | |
| "athletic_shoe": "1f45f", | |
| "atm": "1f3e7", | |
| "atom_symbol": "269b-fe0f", | |
| "australia": "1f1e6-1f1fa", | |
| "austria": "1f1e6-1f1f9", | |
| "avocado": "1f951", | |
| "azerbaijan": "1f1e6-1f1ff", | |
| "b": "1f171-fe0f", | |
| "baby": "1f476", | |
| "baby_bottle": "1f37c", | |
| "baby_chick": "1f424", | |
| "baby_symbol": "1f6bc", | |
| "back": "1f519", | |
| "bacon": "1f953", | |
| "badminton": "1f3f8", | |
| "baggage_claim": "1f6c4", | |
| "baguette_bread": "1f956", | |
| "bahamas": "1f1e7-1f1f8", | |
| "bahrain": "1f1e7-1f1ed", | |
| "balance_scale": "2696-fe0f", | |
| "balloon": "1f388", | |
| "ballot_box": "1f5f3-fe0f", | |
| "ballot_box_with_check": "2611-fe0f", | |
| "bamboo": "1f38d", | |
| "banana": "1f34c", | |
| "bangbang": "203c-fe0f", | |
| "bangladesh": "1f1e7-1f1e9", | |
| "bank": "1f3e6", | |
| "bar_chart": "1f4ca", | |
| "barbados": "1f1e7-1f1e7", | |
| "barber": "1f488", | |
| "baseball": "26be", | |
| "basketball": "1f3c0", | |
| "basketball_man": "26f9-fe0f", | |
| "basketball_woman": "26f9-fe0f-200d-2640-fe0f", | |
| "bat": "1f987", | |
| "bath": "1f6c0", | |
| "bathtub": "1f6c1", | |
| "battery": "1f50b", | |
| "beach_umbrella": "1f3d6-fe0f", | |
| "bear": "1f43b", | |
| "bed": "1f6cf-fe0f", | |
| "bee": "1f41d", | |
| "beer": "1f37a", | |
| "beers": "1f37b", | |
| "beetle": "1f41e", | |
| "beginner": "1f530", | |
| "belarus": "1f1e7-1f1fe", | |
| "belgium": "1f1e7-1f1ea", | |
| "belize": "1f1e7-1f1ff", | |
| "bell": "1f514", | |
| "bellhop_bell": "1f6ce-fe0f", | |
| "benin": "1f1e7-1f1ef", | |
| "bento": "1f371", | |
| "bermuda": "1f1e7-1f1f2", | |
| "bhutan": "1f1e7-1f1f9", | |
| "bicyclist": "1f6b4", | |
| "bike": "1f6b2", | |
| "biking_man": "1f6b4", | |
| "biking_woman": "1f6b4-200d-2640-fe0f", | |
| "bikini": "1f459", | |
| "biohazard": "2623-fe0f", | |
| "bird": "1f426", | |
| "birthday": "1f382", | |
| "black_circle": "26ab", | |
| "black_flag": "1f3f4", | |
| "black_heart": "1f5a4", | |
| "black_joker": "1f0cf", | |
| "black_large_square": "2b1b", | |
| "black_medium_small_square": "25fe", | |
| "black_medium_square": "25fc-fe0f", | |
| "black_nib": "2712-fe0f", | |
| "black_small_square": "25aa-fe0f", | |
| "black_square_button": "1f532", | |
| "blonde_man": "1f471", | |
| "blonde_woman": "1f471-200d-2640-fe0f", | |
| "blossom": "1f33c", | |
| "blowfish": "1f421", | |
| "blue_book": "1f4d8", | |
| "blue_car": "1f699", | |
| "blue_heart": "1f499", | |
| "blush": "1f60a", | |
| "boar": "1f417", | |
| "boat": "26f5", | |
| "bolivia": "1f1e7-1f1f4", | |
| "bomb": "1f4a3", | |
| "book": "1f4d6", | |
| "bookmark": "1f516", | |
| "bookmark_tabs": "1f4d1", | |
| "books": "1f4da", | |
| "boom": "1f4a5", | |
| "boot": "1f462", | |
| "bosnia_herzegovina": "1f1e7-1f1e6", | |
| "botswana": "1f1e7-1f1fc", | |
| "bouquet": "1f490", | |
| "bow": "1f647", | |
| "bow_and_arrow": "1f3f9", | |
| "bowing_man": "1f647", | |
| "bowing_woman": "1f647-200d-2640-fe0f", | |
| "bowling": "1f3b3", | |
| "boxing_glove": "1f94a", | |
| "boy": "1f466", | |
| "brazil": "1f1e7-1f1f7", | |
| "bread": "1f35e", | |
| "bride_with_veil": "1f470", | |
| "bridge_at_night": "1f309", | |
| "briefcase": "1f4bc", | |
| "british_indian_ocean_territory": "1f1ee-1f1f4", | |
| "british_virgin_islands": "1f1fb-1f1ec", | |
| "broken_heart": "1f494", | |
| "brunei": "1f1e7-1f1f3", | |
| "bug": "1f41b", | |
| "building_construction": "1f3d7-fe0f", | |
| "bulb": "1f4a1", | |
| "bulgaria": "1f1e7-1f1ec", | |
| "bullettrain_front": "1f685", | |
| "bullettrain_side": "1f684", | |
| "burkina_faso": "1f1e7-1f1eb", | |
| "burrito": "1f32f", | |
| "burundi": "1f1e7-1f1ee", | |
| "bus": "1f68c", | |
| "business_suit_levitating": "1f574-fe0f", | |
| "busstop": "1f68f", | |
| "bust_in_silhouette": "1f464", | |
| "busts_in_silhouette": "1f465", | |
| "butterfly": "1f98b", | |
| "cactus": "1f335", | |
| "cake": "1f370", | |
| "calendar": "1f4c6", | |
| "call_me_hand": "1f919", | |
| "calling": "1f4f2", | |
| "cambodia": "1f1f0-1f1ed", | |
| "camel": "1f42b", | |
| "camera": "1f4f7", | |
| "camera_flash": "1f4f8", | |
| "cameroon": "1f1e8-1f1f2", | |
| "camping": "1f3d5-fe0f", | |
| "canada": "1f1e8-1f1e6", | |
| "canary_islands": "1f1ee-1f1e8", | |
| "cancer": "264b", | |
| "candle": "1f56f-fe0f", | |
| "candy": "1f36c", | |
| "canoe": "1f6f6", | |
| "cape_verde": "1f1e8-1f1fb", | |
| "capital_abcd": "1f520", | |
| "capricorn": "2651", | |
| "car": "1f697", | |
| "card_file_box": "1f5c3-fe0f", | |
| "card_index": "1f4c7", | |
| "card_index_dividers": "1f5c2-fe0f", | |
| "caribbean_netherlands": "1f1e7-1f1f6", | |
| "carousel_horse": "1f3a0", | |
| "carrot": "1f955", | |
| "cat": "1f431", | |
| "cat2": "1f408", | |
| "cayman_islands": "1f1f0-1f1fe", | |
| "cd": "1f4bf", | |
| "central_african_republic": "1f1e8-1f1eb", | |
| "chad": "1f1f9-1f1e9", | |
| "chains": "26d3-fe0f", | |
| "champagne": "1f37e", | |
| "chart": "1f4b9", | |
| "chart_with_downwards_trend": "1f4c9", | |
| "chart_with_upwards_trend": "1f4c8", | |
| "checkered_flag": "1f3c1", | |
| "cheese": "1f9c0", | |
| "cherries": "1f352", | |
| "cherry_blossom": "1f338", | |
| "chestnut": "1f330", | |
| "chicken": "1f414", | |
| "children_crossing": "1f6b8", | |
| "chile": "1f1e8-1f1f1", | |
| "chipmunk": "1f43f-fe0f", | |
| "chocolate_bar": "1f36b", | |
| "christmas_island": "1f1e8-1f1fd", | |
| "christmas_tree": "1f384", | |
| "church": "26ea", | |
| "cinema": "1f3a6", | |
| "circus_tent": "1f3aa", | |
| "city_sunrise": "1f307", | |
| "city_sunset": "1f306", | |
| "cityscape": "1f3d9-fe0f", | |
| "cl": "1f191", | |
| "clamp": "1f5dc-fe0f", | |
| "clap": "1f44f", | |
| "clapper": "1f3ac", | |
| "classical_building": "1f3db-fe0f", | |
| "clinking_glasses": "1f942", | |
| "clipboard": "1f4cb", | |
| "clock1": "1f550", | |
| "clock10": "1f559", | |
| "clock1030": "1f565", | |
| "clock11": "1f55a", | |
| "clock1130": "1f566", | |
| "clock12": "1f55b", | |
| "clock1230": "1f567", | |
| "clock130": "1f55c", | |
| "clock2": "1f551", | |
| "clock230": "1f55d", | |
| "clock3": "1f552", | |
| "clock330": "1f55e", | |
| "clock4": "1f553", | |
| "clock430": "1f55f", | |
| "clock5": "1f554", | |
| "clock530": "1f560", | |
| "clock6": "1f555", | |
| "clock630": "1f561", | |
| "clock7": "1f556", | |
| "clock730": "1f562", | |
| "clock8": "1f557", | |
| "clock830": "1f563", | |
| "clock9": "1f558", | |
| "clock930": "1f564", | |
| "closed_book": "1f4d5", | |
| "closed_lock_with_key": "1f510", | |
| "closed_umbrella": "1f302", | |
| "cloud": "2601-fe0f", | |
| "cloud_with_lightning": "1f329-fe0f", | |
| "cloud_with_lightning_and_rain": "26c8-fe0f", | |
| "cloud_with_rain": "1f327-fe0f", | |
| "cloud_with_snow": "1f328-fe0f", | |
| "clown_face": "1f921", | |
| "clubs": "2663-fe0f", | |
| "cn": "1f1e8-1f1f3", | |
| "cocktail": "1f378", | |
| "cocos_islands": "1f1e8-1f1e8", | |
| "coffee": "2615", | |
| "coffin": "26b0-fe0f", | |
| "cold_sweat": "1f630", | |
| "collision": "1f4a5", | |
| "colombia": "1f1e8-1f1f4", | |
| "comet": "2604-fe0f", | |
| "comoros": "1f1f0-1f1f2", | |
| "computer": "1f4bb", | |
| "computer_mouse": "1f5b1-fe0f", | |
| "confetti_ball": "1f38a", | |
| "confounded": "1f616", | |
| "confused": "1f615", | |
| "congo_brazzaville": "1f1e8-1f1ec", | |
| "congo_kinshasa": "1f1e8-1f1e9", | |
| "congratulations": "3297-fe0f", | |
| "construction": "1f6a7", | |
| "construction_worker": "1f477", | |
| "construction_worker_man": "1f477", | |
| "construction_worker_woman": "1f477-200d-2640-fe0f", | |
| "control_knobs": "1f39b-fe0f", | |
| "convenience_store": "1f3ea", | |
| "cook_islands": "1f1e8-1f1f0", | |
| "cookie": "1f36a", | |
| "cool": "1f192", | |
| "cop": "1f46e", | |
| "copyright": "a9-fe0f", | |
| "corn": "1f33d", | |
| "costa_rica": "1f1e8-1f1f7", | |
| "cote_divoire": "1f1e8-1f1ee", | |
| "couch_and_lamp": "1f6cb-fe0f", | |
| "couple": "1f46b", | |
| "couple_with_heart": "1f491", | |
| "couple_with_heart_man_man": "1f468-200d-2764-fe0f-200d-1f468", | |
| "couple_with_heart_woman_man": "1f491", | |
| "couple_with_heart_woman_woman": "1f469-200d-2764-fe0f-200d-1f469", | |
| "couplekiss_man_man": "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468", | |
| "couplekiss_man_woman": "1f48f", | |
| "couplekiss_woman_woman": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469", | |
| "cow": "1f42e", | |
| "cow2": "1f404", | |
| "cowboy_hat_face": "1f920", | |
| "crab": "1f980", | |
| "crayon": "1f58d-fe0f", | |
| "credit_card": "1f4b3", | |
| "crescent_moon": "1f319", | |
| "cricket": "1f3cf", | |
| "croatia": "1f1ed-1f1f7", | |
| "crocodile": "1f40a", | |
| "croissant": "1f950", | |
| "crossed_fingers": "1f91e", | |
| "crossed_flags": "1f38c", | |
| "crossed_swords": "2694-fe0f", | |
| "crown": "1f451", | |
| "cry": "1f622", | |
| "crying_cat_face": "1f63f", | |
| "crystal_ball": "1f52e", | |
| "cuba": "1f1e8-1f1fa", | |
| "cucumber": "1f952", | |
| "cupid": "1f498", | |
| "curacao": "1f1e8-1f1fc", | |
| "curly_loop": "27b0", | |
| "currency_exchange": "1f4b1", | |
| "curry": "1f35b", | |
| "custard": "1f36e", | |
| "customs": "1f6c3", | |
| "cyclone": "1f300", | |
| "cyprus": "1f1e8-1f1fe", | |
| "czech_republic": "1f1e8-1f1ff", | |
| "dagger": "1f5e1-fe0f", | |
| "dancer": "1f483", | |
| "dancers": "1f46f", | |
| "dancing_men": "1f46f-200d-2642-fe0f", | |
| "dancing_women": "1f46f", | |
| "dango": "1f361", | |
| "dark_sunglasses": "1f576-fe0f", | |
| "dart": "1f3af", | |
| "dash": "1f4a8", | |
| "date": "1f4c5", | |
| "de": "1f1e9-1f1ea", | |
| "deciduous_tree": "1f333", | |
| "deer": "1f98c", | |
| "denmark": "1f1e9-1f1f0", | |
| "department_store": "1f3ec", | |
| "derelict_house": "1f3da-fe0f", | |
| "desert": "1f3dc-fe0f", | |
| "desert_island": "1f3dd-fe0f", | |
| "desktop_computer": "1f5a5-fe0f", | |
| "detective": "1f575-fe0f", | |
| "diamond_shape_with_a_dot_inside": "1f4a0", | |
| "diamonds": "2666-fe0f", | |
| "disappointed": "1f61e", | |
| "disappointed_relieved": "1f625", | |
| "dizzy": "1f4ab", | |
| "dizzy_face": "1f635", | |
| "djibouti": "1f1e9-1f1ef", | |
| "do_not_litter": "1f6af", | |
| "dog": "1f436", | |
| "dog2": "1f415", | |
| "dollar": "1f4b5", | |
| "dolls": "1f38e", | |
| "dolphin": "1f42c", | |
| "dominica": "1f1e9-1f1f2", | |
| "dominican_republic": "1f1e9-1f1f4", | |
| "door": "1f6aa", | |
| "doughnut": "1f369", | |
| "dove": "1f54a-fe0f", | |
| "dragon": "1f409", | |
| "dragon_face": "1f432", | |
| "dress": "1f457", | |
| "dromedary_camel": "1f42a", | |
| "drooling_face": "1f924", | |
| "droplet": "1f4a7", | |
| "drum": "1f941", | |
| "duck": "1f986", | |
| "dvd": "1f4c0", | |
| "e-mail": "1f4e7", | |
| "eagle": "1f985", | |
| "ear": "1f442", | |
| "ear_of_rice": "1f33e", | |
| "earth_africa": "1f30d", | |
| "earth_americas": "1f30e", | |
| "earth_asia": "1f30f", | |
| "ecuador": "1f1ea-1f1e8", | |
| "egg": "1f95a", | |
| "eggplant": "1f346", | |
| "egypt": "1f1ea-1f1ec", | |
| "eight": "38-fe0f-20e3", | |
| "eight_pointed_black_star": "2734-fe0f", | |
| "eight_spoked_asterisk": "2733-fe0f", | |
| "el_salvador": "1f1f8-1f1fb", | |
| "electric_plug": "1f50c", | |
| "elephant": "1f418", | |
| "email": "2709-fe0f", | |
| "end": "1f51a", | |
| "envelope": "2709-fe0f", | |
| "envelope_with_arrow": "1f4e9", | |
| "equatorial_guinea": "1f1ec-1f1f6", | |
| "eritrea": "1f1ea-1f1f7", | |
| "es": "1f1ea-1f1f8", | |
| "estonia": "1f1ea-1f1ea", | |
| "ethiopia": "1f1ea-1f1f9", | |
| "eu": "1f1ea-1f1fa", | |
| "euro": "1f4b6", | |
| "european_castle": "1f3f0", | |
| "european_post_office": "1f3e4", | |
| "european_union": "1f1ea-1f1fa", | |
| "evergreen_tree": "1f332", | |
| "exclamation": "2757", | |
| "expressionless": "1f611", | |
| "eye": "1f441-fe0f", | |
| "eye_speech_bubble": "1f441-fe0f-200d-1f5e8-fe0f", | |
| "eyeglasses": "1f453", | |
| "eyes": "1f440", | |
| "face_with_head_bandage": "1f915", | |
| "face_with_thermometer": "1f912", | |
| "facepunch": "1f44a", | |
| "factory": "1f3ed", | |
| "falkland_islands": "1f1eb-1f1f0", | |
| "fallen_leaf": "1f342", | |
| "family": "1f46a", | |
| "family_man_boy": "1f468-200d-1f466", | |
| "family_man_boy_boy": "1f468-200d-1f466-200d-1f466", | |
| "family_man_girl": "1f468-200d-1f467", | |
| "family_man_girl_boy": "1f468-200d-1f467-200d-1f466", | |
| "family_man_girl_girl": "1f468-200d-1f467-200d-1f467", | |
| "family_man_man_boy": "1f468-200d-1f468-200d-1f466", | |
| "family_man_man_boy_boy": "1f468-200d-1f468-200d-1f466-200d-1f466", | |
| "family_man_man_girl": "1f468-200d-1f468-200d-1f467", | |
| "family_man_man_girl_boy": "1f468-200d-1f468-200d-1f467-200d-1f466", | |
| "family_man_man_girl_girl": "1f468-200d-1f468-200d-1f467-200d-1f467", | |
| "family_man_woman_boy": "1f46a", | |
| "family_man_woman_boy_boy": "1f468-200d-1f469-200d-1f466-200d-1f466", | |
| "family_man_woman_girl": "1f468-200d-1f469-200d-1f467", | |
| "family_man_woman_girl_boy": "1f468-200d-1f469-200d-1f467-200d-1f466", | |
| "family_man_woman_girl_girl": "1f468-200d-1f469-200d-1f467-200d-1f467", | |
| "family_woman_boy": "1f469-200d-1f466", | |
| "family_woman_boy_boy": "1f469-200d-1f466-200d-1f466", | |
| "family_woman_girl": "1f469-200d-1f467", | |
| "family_woman_girl_boy": "1f469-200d-1f467-200d-1f466", | |
| "family_woman_girl_girl": "1f469-200d-1f467-200d-1f467", | |
| "family_woman_woman_boy": "1f469-200d-1f469-200d-1f466", | |
| "family_woman_woman_boy_boy": "1f469-200d-1f469-200d-1f466-200d-1f466", | |
| "family_woman_woman_girl": "1f469-200d-1f469-200d-1f467", | |
| "family_woman_woman_girl_boy": "1f469-200d-1f469-200d-1f467-200d-1f466", | |
| "family_woman_woman_girl_girl": "1f469-200d-1f469-200d-1f467-200d-1f467", | |
| "faroe_islands": "1f1eb-1f1f4", | |
| "fast_forward": "23e9", | |
| "fax": "1f4e0", | |
| "fearful": "1f628", | |
| "feet": "1f43e", | |
| "female_detective": "1f575-fe0f-200d-2640-fe0f", | |
| "ferris_wheel": "1f3a1", | |
| "ferry": "26f4-fe0f", | |
| "field_hockey": "1f3d1", | |
| "fiji": "1f1eb-1f1ef", | |
| "file_cabinet": "1f5c4-fe0f", | |
| "file_folder": "1f4c1", | |
| "film_projector": "1f4fd-fe0f", | |
| "film_strip": "1f39e-fe0f", | |
| "finland": "1f1eb-1f1ee", | |
| "fire": "1f525", | |
| "fire_engine": "1f692", | |
| "fireworks": "1f386", | |
| "first_quarter_moon": "1f313", | |
| "first_quarter_moon_with_face": "1f31b", | |
| "fish": "1f41f", | |
| "fish_cake": "1f365", | |
| "fishing_pole_and_fish": "1f3a3", | |
| "fist": "270a", | |
| "fist_left": "1f91b", | |
| "fist_oncoming": "1f44a", | |
| "fist_raised": "270a", | |
| "fist_right": "1f91c", | |
| "five": "35-fe0f-20e3", | |
| "flags": "1f38f", | |
| "flashlight": "1f526", | |
| "fleur_de_lis": "269c-fe0f", | |
| "flight_arrival": "1f6ec", | |
| "flight_departure": "1f6eb", | |
| "flipper": "1f42c", | |
| "floppy_disk": "1f4be", | |
| "flower_playing_cards": "1f3b4", | |
| "flushed": "1f633", | |
| "fog": "1f32b-fe0f", | |
| "foggy": "1f301", | |
| "football": "1f3c8", | |
| "footprints": "1f463", | |
| "fork_and_knife": "1f374", | |
| "fountain": "26f2", | |
| "fountain_pen": "1f58b-fe0f", | |
| "four": "34-fe0f-20e3", | |
| "four_leaf_clover": "1f340", | |
| "fox_face": "1f98a", | |
| "fr": "1f1eb-1f1f7", | |
| "framed_picture": "1f5bc-fe0f", | |
| "free": "1f193", | |
| "french_guiana": "1f1ec-1f1eb", | |
| "french_polynesia": "1f1f5-1f1eb", | |
| "french_southern_territories": "1f1f9-1f1eb", | |
| "fried_egg": "1f373", | |
| "fried_shrimp": "1f364", | |
| "fries": "1f35f", | |
| "frog": "1f438", | |
| "frowning": "1f626", | |
| "frowning_face": "2639-fe0f", | |
| "frowning_man": "1f64d-200d-2642-fe0f", | |
| "frowning_woman": "1f64d", | |
| "fu": "1f595", | |
| "fuelpump": "26fd", | |
| "full_moon": "1f315", | |
| "full_moon_with_face": "1f31d", | |
| "funeral_urn": "26b1-fe0f", | |
| "gabon": "1f1ec-1f1e6", | |
| "gambia": "1f1ec-1f1f2", | |
| "game_die": "1f3b2", | |
| "gb": "1f1ec-1f1e7", | |
| "gear": "2699-fe0f", | |
| "gem": "1f48e", | |
| "gemini": "264a", | |
| "georgia": "1f1ec-1f1ea", | |
| "ghana": "1f1ec-1f1ed", | |
| "ghost": "1f47b", | |
| "gibraltar": "1f1ec-1f1ee", | |
| "gift": "1f381", | |
| "gift_heart": "1f49d", | |
| "girl": "1f467", | |
| "globe_with_meridians": "1f310", | |
| "goal_net": "1f945", | |
| "goat": "1f410", | |
| "golf": "26f3", | |
| "golfing_man": "1f3cc-fe0f", | |
| "golfing_woman": "1f3cc-fe0f-200d-2640-fe0f", | |
| "gorilla": "1f98d", | |
| "grapes": "1f347", | |
| "greece": "1f1ec-1f1f7", | |
| "green_apple": "1f34f", | |
| "green_book": "1f4d7", | |
| "green_heart": "1f49a", | |
| "green_salad": "1f957", | |
| "greenland": "1f1ec-1f1f1", | |
| "grenada": "1f1ec-1f1e9", | |
| "grey_exclamation": "2755", | |
| "grey_question": "2754", | |
| "grimacing": "1f62c", | |
| "grin": "1f601", | |
| "grinning": "1f600", | |
| "guadeloupe": "1f1ec-1f1f5", | |
| "guam": "1f1ec-1f1fa", | |
| "guardsman": "1f482", | |
| "guardswoman": "1f482-200d-2640-fe0f", | |
| "guatemala": "1f1ec-1f1f9", | |
| "guernsey": "1f1ec-1f1ec", | |
| "guinea": "1f1ec-1f1f3", | |
| "guinea_bissau": "1f1ec-1f1fc", | |
| "guitar": "1f3b8", | |
| "gun": "1f52b", | |
| "guyana": "1f1ec-1f1fe", | |
| "haircut": "1f487", | |
| "haircut_man": "1f487-200d-2642-fe0f", | |
| "haircut_woman": "1f487", | |
| "haiti": "1f1ed-1f1f9", | |
| "hamburger": "1f354", | |
| "hammer": "1f528", | |
| "hammer_and_pick": "2692-fe0f", | |
| "hammer_and_wrench": "1f6e0-fe0f", | |
| "hamster": "1f439", | |
| "hand": "270b", | |
| "handbag": "1f45c", | |
| "handshake": "1f91d", | |
| "hankey": "1f4a9", | |
| "hash": "23-fe0f-20e3", | |
| "hatched_chick": "1f425", | |
| "hatching_chick": "1f423", | |
| "headphones": "1f3a7", | |
| "hear_no_evil": "1f649", | |
| "heart": "2764-fe0f", | |
| "heart_decoration": "1f49f", | |
| "heart_eyes": "1f60d", | |
| "heart_eyes_cat": "1f63b", | |
| "heartbeat": "1f493", | |
| "heartpulse": "1f497", | |
| "hearts": "2665-fe0f", | |
| "heavy_check_mark": "2714-fe0f", | |
| "heavy_division_sign": "2797", | |
| "heavy_dollar_sign": "1f4b2", | |
| "heavy_exclamation_mark": "2757", | |
| "heavy_heart_exclamation": "2763-fe0f", | |
| "heavy_minus_sign": "2796", | |
| "heavy_multiplication_x": "2716-fe0f", | |
| "heavy_plus_sign": "2795", | |
| "helicopter": "1f681", | |
| "herb": "1f33f", | |
| "hibiscus": "1f33a", | |
| "high_brightness": "1f506", | |
| "high_heel": "1f460", | |
| "hocho": "1f52a", | |
| "hole": "1f573-fe0f", | |
| "honduras": "1f1ed-1f1f3", | |
| "honey_pot": "1f36f", | |
| "honeybee": "1f41d", | |
| "hong_kong": "1f1ed-1f1f0", | |
| "horse": "1f434", | |
| "horse_racing": "1f3c7", | |
| "hospital": "1f3e5", | |
| "hot_pepper": "1f336-fe0f", | |
| "hotdog": "1f32d", | |
| "hotel": "1f3e8", | |
| "hotsprings": "2668-fe0f", | |
| "hourglass": "231b", | |
| "hourglass_flowing_sand": "23f3", | |
| "house": "1f3e0", | |
| "house_with_garden": "1f3e1", | |
| "houses": "1f3d8-fe0f", | |
| "hugs": "1f917", | |
| "hungary": "1f1ed-1f1fa", | |
| "hushed": "1f62f", | |
| "ice_cream": "1f368", | |
| "ice_hockey": "1f3d2", | |
| "ice_skate": "26f8-fe0f", | |
| "icecream": "1f366", | |
| "iceland": "1f1ee-1f1f8", | |
| "id": "1f194", | |
| "ideograph_advantage": "1f250", | |
| "imp": "1f47f", | |
| "inbox_tray": "1f4e5", | |
| "incoming_envelope": "1f4e8", | |
| "india": "1f1ee-1f1f3", | |
| "indonesia": "1f1ee-1f1e9", | |
| "information_desk_person": "1f481", | |
| "information_source": "2139-fe0f", | |
| "innocent": "1f607", | |
| "interrobang": "2049-fe0f", | |
| "iphone": "1f4f1", | |
| "iran": "1f1ee-1f1f7", | |
| "iraq": "1f1ee-1f1f6", | |
| "ireland": "1f1ee-1f1ea", | |
| "isle_of_man": "1f1ee-1f1f2", | |
| "israel": "1f1ee-1f1f1", | |
| "it": "1f1ee-1f1f9", | |
| "izakaya_lantern": "1f3ee", | |
| "jack_o_lantern": "1f383", | |
| "jamaica": "1f1ef-1f1f2", | |
| "japan": "1f5fe", | |
| "japanese_castle": "1f3ef", | |
| "japanese_goblin": "1f47a", | |
| "japanese_ogre": "1f479", | |
| "jeans": "1f456", | |
| "jersey": "1f1ef-1f1ea", | |
| "jordan": "1f1ef-1f1f4", | |
| "joy": "1f602", | |
| "joy_cat": "1f639", | |
| "joystick": "1f579-fe0f", | |
| "jp": "1f1ef-1f1f5", | |
| "kaaba": "1f54b", | |
| "kazakhstan": "1f1f0-1f1ff", | |
| "kenya": "1f1f0-1f1ea", | |
| "key": "1f511", | |
| "keyboard": "2328-fe0f", | |
| "keycap_ten": "1f51f", | |
| "kick_scooter": "1f6f4", | |
| "kimono": "1f458", | |
| "kiribati": "1f1f0-1f1ee", | |
| "kiss": "1f48b", | |
| "kissing": "1f617", | |
| "kissing_cat": "1f63d", | |
| "kissing_closed_eyes": "1f61a", | |
| "kissing_heart": "1f618", | |
| "kissing_smiling_eyes": "1f619", | |
| "kiwi_fruit": "1f95d", | |
| "knife": "1f52a", | |
| "koala": "1f428", | |
| "koko": "1f201", | |
| "kosovo": "1f1fd-1f1f0", | |
| "kr": "1f1f0-1f1f7", | |
| "kuwait": "1f1f0-1f1fc", | |
| "kyrgyzstan": "1f1f0-1f1ec", | |
| "label": "1f3f7-fe0f", | |
| "lantern": "1f3ee", | |
| "laos": "1f1f1-1f1e6", | |
| "large_blue_circle": "1f535", | |
| "large_blue_diamond": "1f537", | |
| "large_orange_diamond": "1f536", | |
| "last_quarter_moon": "1f317", | |
| "last_quarter_moon_with_face": "1f31c", | |
| "latin_cross": "271d-fe0f", | |
| "latvia": "1f1f1-1f1fb", | |
| "laughing": "1f606", | |
| "leaves": "1f343", | |
| "lebanon": "1f1f1-1f1e7", | |
| "ledger": "1f4d2", | |
| "left_luggage": "1f6c5", | |
| "left_right_arrow": "2194-fe0f", | |
| "leftwards_arrow_with_hook": "21a9-fe0f", | |
| "lemon": "1f34b", | |
| "leo": "264c", | |
| "leopard": "1f406", | |
| "lesotho": "1f1f1-1f1f8", | |
| "level_slider": "1f39a-fe0f", | |
| "liberia": "1f1f1-1f1f7", | |
| "libra": "264e", | |
| "libya": "1f1f1-1f1fe", | |
| "liechtenstein": "1f1f1-1f1ee", | |
| "light_rail": "1f688", | |
| "link": "1f517", | |
| "lion": "1f981", | |
| "lips": "1f444", | |
| "lipstick": "1f484", | |
| "lithuania": "1f1f1-1f1f9", | |
| "lizard": "1f98e", | |
| "lock": "1f512", | |
| "lock_with_ink_pen": "1f50f", | |
| "lollipop": "1f36d", | |
| "loop": "27bf", | |
| "loud_sound": "1f50a", | |
| "loudspeaker": "1f4e2", | |
| "love_hotel": "1f3e9", | |
| "love_letter": "1f48c", | |
| "low_brightness": "1f505", | |
| "luxembourg": "1f1f1-1f1fa", | |
| "lying_face": "1f925", | |
| "m": "24c2-fe0f", | |
| "macau": "1f1f2-1f1f4", | |
| "macedonia": "1f1f2-1f1f0", | |
| "madagascar": "1f1f2-1f1ec", | |
| "mag": "1f50d", | |
| "mag_right": "1f50e", | |
| "mahjong": "1f004", | |
| "mailbox": "1f4eb", | |
| "mailbox_closed": "1f4ea", | |
| "mailbox_with_mail": "1f4ec", | |
| "mailbox_with_no_mail": "1f4ed", | |
| "malawi": "1f1f2-1f1fc", | |
| "malaysia": "1f1f2-1f1fe", | |
| "maldives": "1f1f2-1f1fb", | |
| "male_detective": "1f575-fe0f", | |
| "mali": "1f1f2-1f1f1", | |
| "malta": "1f1f2-1f1f9", | |
| "man": "1f468", | |
| "man_artist": "1f468-200d-1f3a8", | |
| "man_astronaut": "1f468-200d-1f680", | |
| "man_cartwheeling": "1f938-200d-2642-fe0f", | |
| "man_cook": "1f468-200d-1f373", | |
| "man_dancing": "1f57a", | |
| "man_facepalming": "1f926-200d-2642-fe0f", | |
| "man_factory_worker": "1f468-200d-1f3ed", | |
| "man_farmer": "1f468-200d-1f33e", | |
| "man_firefighter": "1f468-200d-1f692", | |
| "man_health_worker": "1f468-200d-2695-fe0f", | |
| "man_in_tuxedo": "1f935", | |
| "man_judge": "1f468-200d-2696-fe0f", | |
| "man_juggling": "1f939-200d-2642-fe0f", | |
| "man_mechanic": "1f468-200d-1f527", | |
| "man_office_worker": "1f468-200d-1f4bc", | |
| "man_pilot": "1f468-200d-2708-fe0f", | |
| "man_playing_handball": "1f93e-200d-2642-fe0f", | |
| "man_playing_water_polo": "1f93d-200d-2642-fe0f", | |
| "man_scientist": "1f468-200d-1f52c", | |
| "man_shrugging": "1f937-200d-2642-fe0f", | |
| "man_singer": "1f468-200d-1f3a4", | |
| "man_student": "1f468-200d-1f393", | |
| "man_teacher": "1f468-200d-1f3eb", | |
| "man_technologist": "1f468-200d-1f4bb", | |
| "man_with_gua_pi_mao": "1f472", | |
| "man_with_turban": "1f473", | |
| "mandarin": "1f34a", | |
| "mans_shoe": "1f45e", | |
| "mantelpiece_clock": "1f570-fe0f", | |
| "maple_leaf": "1f341", | |
| "marshall_islands": "1f1f2-1f1ed", | |
| "martial_arts_uniform": "1f94b", | |
| "martinique": "1f1f2-1f1f6", | |
| "mask": "1f637", | |
| "massage": "1f486", | |
| "massage_man": "1f486-200d-2642-fe0f", | |
| "massage_woman": "1f486", | |
| "mauritania": "1f1f2-1f1f7", | |
| "mauritius": "1f1f2-1f1fa", | |
| "mayotte": "1f1fe-1f1f9", | |
| "meat_on_bone": "1f356", | |
| "medal_military": "1f396-fe0f", | |
| "medal_sports": "1f3c5", | |
| "mega": "1f4e3", | |
| "melon": "1f348", | |
| "memo": "1f4dd", | |
| "men_wrestling": "1f93c-200d-2642-fe0f", | |
| "menorah": "1f54e", | |
| "mens": "1f6b9", | |
| "metal": "1f918", | |
| "metro": "1f687", | |
| "mexico": "1f1f2-1f1fd", | |
| "micronesia": "1f1eb-1f1f2", | |
| "microphone": "1f3a4", | |
| "microscope": "1f52c", | |
| "middle_finger": "1f595", | |
| "milk_glass": "1f95b", | |
| "milky_way": "1f30c", | |
| "minibus": "1f690", | |
| "minidisc": "1f4bd", | |
| "mobile_phone_off": "1f4f4", | |
| "moldova": "1f1f2-1f1e9", | |
| "monaco": "1f1f2-1f1e8", | |
| "money_mouth_face": "1f911", | |
| "money_with_wings": "1f4b8", | |
| "moneybag": "1f4b0", | |
| "mongolia": "1f1f2-1f1f3", | |
| "monkey": "1f412", | |
| "monkey_face": "1f435", | |
| "monorail": "1f69d", | |
| "montenegro": "1f1f2-1f1ea", | |
| "montserrat": "1f1f2-1f1f8", | |
| "moon": "1f314", | |
| "morocco": "1f1f2-1f1e6", | |
| "mortar_board": "1f393", | |
| "mosque": "1f54c", | |
| "motor_boat": "1f6e5-fe0f", | |
| "motor_scooter": "1f6f5", | |
| "motorcycle": "1f3cd-fe0f", | |
| "motorway": "1f6e3-fe0f", | |
| "mount_fuji": "1f5fb", | |
| "mountain": "26f0-fe0f", | |
| "mountain_bicyclist": "1f6b5", | |
| "mountain_biking_man": "1f6b5", | |
| "mountain_biking_woman": "1f6b5-200d-2640-fe0f", | |
| "mountain_cableway": "1f6a0", | |
| "mountain_railway": "1f69e", | |
| "mountain_snow": "1f3d4-fe0f", | |
| "mouse": "1f42d", | |
| "mouse2": "1f401", | |
| "movie_camera": "1f3a5", | |
| "moyai": "1f5ff", | |
| "mozambique": "1f1f2-1f1ff", | |
| "mrs_claus": "1f936", | |
| "muscle": "1f4aa", | |
| "mushroom": "1f344", | |
| "musical_keyboard": "1f3b9", | |
| "musical_note": "1f3b5", | |
| "musical_score": "1f3bc", | |
| "mute": "1f507", | |
| "myanmar": "1f1f2-1f1f2", | |
| "nail_care": "1f485", | |
| "name_badge": "1f4db", | |
| "namibia": "1f1f3-1f1e6", | |
| "national_park": "1f3de-fe0f", | |
| "nauru": "1f1f3-1f1f7", | |
| "nauseated_face": "1f922", | |
| "necktie": "1f454", | |
| "negative_squared_cross_mark": "274e", | |
| "nepal": "1f1f3-1f1f5", | |
| "nerd_face": "1f913", | |
| "netherlands": "1f1f3-1f1f1", | |
| "neutral_face": "1f610", | |
| "new": "1f195", | |
| "new_caledonia": "1f1f3-1f1e8", | |
| "new_moon": "1f311", | |
| "new_moon_with_face": "1f31a", | |
| "new_zealand": "1f1f3-1f1ff", | |
| "newspaper": "1f4f0", | |
| "newspaper_roll": "1f5de-fe0f", | |
| "next_track_button": "23ed-fe0f", | |
| "ng": "1f196", | |
| "ng_man": "1f645-200d-2642-fe0f", | |
| "ng_woman": "1f645", | |
| "nicaragua": "1f1f3-1f1ee", | |
| "niger": "1f1f3-1f1ea", | |
| "nigeria": "1f1f3-1f1ec", | |
| "night_with_stars": "1f303", | |
| "nine": "39-fe0f-20e3", | |
| "niue": "1f1f3-1f1fa", | |
| "no_bell": "1f515", | |
| "no_bicycles": "1f6b3", | |
| "no_entry": "26d4", | |
| "no_entry_sign": "1f6ab", | |
| "no_good": "1f645", | |
| "no_good_man": "1f645-200d-2642-fe0f", | |
| "no_good_woman": "1f645", | |
| "no_mobile_phones": "1f4f5", | |
| "no_mouth": "1f636", | |
| "no_pedestrians": "1f6b7", | |
| "no_smoking": "1f6ad", | |
| "non-potable_water": "1f6b1", | |
| "norfolk_island": "1f1f3-1f1eb", | |
| "north_korea": "1f1f0-1f1f5", | |
| "northern_mariana_islands": "1f1f2-1f1f5", | |
| "norway": "1f1f3-1f1f4", | |
| "nose": "1f443", | |
| "notebook": "1f4d3", | |
| "notebook_with_decorative_cover": "1f4d4", | |
| "notes": "1f3b6", | |
| "nut_and_bolt": "1f529", | |
| "o": "2b55", | |
| "o2": "1f17e-fe0f", | |
| "ocean": "1f30a", | |
| "octopus": "1f419", | |
| "oden": "1f362", | |
| "office": "1f3e2", | |
| "oil_drum": "1f6e2-fe0f", | |
| "ok": "1f197", | |
| "ok_hand": "1f44c", | |
| "ok_man": "1f646-200d-2642-fe0f", | |
| "ok_woman": "1f646", | |
| "old_key": "1f5dd-fe0f", | |
| "older_man": "1f474", | |
| "older_woman": "1f475", | |
| "om": "1f549-fe0f", | |
| "oman": "1f1f4-1f1f2", | |
| "on": "1f51b", | |
| "oncoming_automobile": "1f698", | |
| "oncoming_bus": "1f68d", | |
| "oncoming_police_car": "1f694", | |
| "oncoming_taxi": "1f696", | |
| "one": "31-fe0f-20e3", | |
| "open_book": "1f4d6", | |
| "open_file_folder": "1f4c2", | |
| "open_hands": "1f450", | |
| "open_mouth": "1f62e", | |
| "open_umbrella": "2602-fe0f", | |
| "ophiuchus": "26ce", | |
| "orange": "1f34a", | |
| "orange_book": "1f4d9", | |
| "orthodox_cross": "2626-fe0f", | |
| "outbox_tray": "1f4e4", | |
| "owl": "1f989", | |
| "ox": "1f402", | |
| "package": "1f4e6", | |
| "page_facing_up": "1f4c4", | |
| "page_with_curl": "1f4c3", | |
| "pager": "1f4df", | |
| "paintbrush": "1f58c-fe0f", | |
| "pakistan": "1f1f5-1f1f0", | |
| "palau": "1f1f5-1f1fc", | |
| "palestinian_territories": "1f1f5-1f1f8", | |
| "palm_tree": "1f334", | |
| "panama": "1f1f5-1f1e6", | |
| "pancakes": "1f95e", | |
| "panda_face": "1f43c", | |
| "paperclip": "1f4ce", | |
| "paperclips": "1f587-fe0f", | |
| "papua_new_guinea": "1f1f5-1f1ec", | |
| "paraguay": "1f1f5-1f1fe", | |
| "parasol_on_ground": "26f1-fe0f", | |
| "parking": "1f17f-fe0f", | |
| "part_alternation_mark": "303d-fe0f", | |
| "partly_sunny": "26c5", | |
| "passenger_ship": "1f6f3-fe0f", | |
| "passport_control": "1f6c2", | |
| "pause_button": "23f8-fe0f", | |
| "paw_prints": "1f43e", | |
| "peace_symbol": "262e-fe0f", | |
| "peach": "1f351", | |
| "peanuts": "1f95c", | |
| "pear": "1f350", | |
| "pen": "1f58a-fe0f", | |
| "pencil": "1f4dd", | |
| "pencil2": "270f-fe0f", | |
| "penguin": "1f427", | |
| "pensive": "1f614", | |
| "performing_arts": "1f3ad", | |
| "persevere": "1f623", | |
| "person_fencing": "1f93a", | |
| "person_frowning": "1f64d", | |
| "person_with_blond_hair": "1f471", | |
| "person_with_pouting_face": "1f64e", | |
| "peru": "1f1f5-1f1ea", | |
| "philippines": "1f1f5-1f1ed", | |
| "phone": "260e-fe0f", | |
| "pick": "26cf-fe0f", | |
| "pig": "1f437", | |
| "pig2": "1f416", | |
| "pig_nose": "1f43d", | |
| "pill": "1f48a", | |
| "pineapple": "1f34d", | |
| "ping_pong": "1f3d3", | |
| "pisces": "2653", | |
| "pitcairn_islands": "1f1f5-1f1f3", | |
| "pizza": "1f355", | |
| "place_of_worship": "1f6d0", | |
| "plate_with_cutlery": "1f37d-fe0f", | |
| "play_or_pause_button": "23ef-fe0f", | |
| "point_down": "1f447", | |
| "point_left": "1f448", | |
| "point_right": "1f449", | |
| "point_up": "261d-fe0f", | |
| "point_up_2": "1f446", | |
| "poland": "1f1f5-1f1f1", | |
| "police_car": "1f693", | |
| "policeman": "1f46e", | |
| "policewoman": "1f46e-200d-2640-fe0f", | |
| "poodle": "1f429", | |
| "poop": "1f4a9", | |
| "popcorn": "1f37f", | |
| "portugal": "1f1f5-1f1f9", | |
| "post_office": "1f3e3", | |
| "postal_horn": "1f4ef", | |
| "postbox": "1f4ee", | |
| "potable_water": "1f6b0", | |
| "potato": "1f954", | |
| "pouch": "1f45d", | |
| "poultry_leg": "1f357", | |
| "pound": "1f4b7", | |
| "pout": "1f621", | |
| "pouting_cat": "1f63e", | |
| "pouting_man": "1f64e-200d-2642-fe0f", | |
| "pouting_woman": "1f64e", | |
| "pray": "1f64f", | |
| "prayer_beads": "1f4ff", | |
| "pregnant_woman": "1f930", | |
| "previous_track_button": "23ee-fe0f", | |
| "prince": "1f934", | |
| "princess": "1f478", | |
| "printer": "1f5a8-fe0f", | |
| "puerto_rico": "1f1f5-1f1f7", | |
| "punch": "1f44a", | |
| "purple_heart": "1f49c", | |
| "purse": "1f45b", | |
| "pushpin": "1f4cc", | |
| "put_litter_in_its_place": "1f6ae", | |
| "qatar": "1f1f6-1f1e6", | |
| "question": "2753", | |
| "rabbit": "1f430", | |
| "rabbit2": "1f407", | |
| "racehorse": "1f40e", | |
| "racing_car": "1f3ce-fe0f", | |
| "radio": "1f4fb", | |
| "radio_button": "1f518", | |
| "radioactive": "2622-fe0f", | |
| "rage": "1f621", | |
| "railway_car": "1f683", | |
| "railway_track": "1f6e4-fe0f", | |
| "rainbow": "1f308", | |
| "rainbow_flag": "1f3f3-fe0f-200d-1f308", | |
| "raised_back_of_hand": "1f91a", | |
| "raised_hand": "270b", | |
| "raised_hand_with_fingers_splayed": "1f590-fe0f", | |
| "raised_hands": "1f64c", | |
| "raising_hand": "1f64b", | |
| "raising_hand_man": "1f64b-200d-2642-fe0f", | |
| "raising_hand_woman": "1f64b", | |
| "ram": "1f40f", | |
| "ramen": "1f35c", | |
| "rat": "1f400", | |
| "record_button": "23fa-fe0f", | |
| "recycle": "267b-fe0f", | |
| "red_car": "1f697", | |
| "red_circle": "1f534", | |
| "registered": "ae-fe0f", | |
| "relaxed": "263a-fe0f", | |
| "relieved": "1f60c", | |
| "reminder_ribbon": "1f397-fe0f", | |
| "repeat": "1f501", | |
| "repeat_one": "1f502", | |
| "rescue_worker_helmet": "26d1-fe0f", | |
| "restroom": "1f6bb", | |
| "reunion": "1f1f7-1f1ea", | |
| "revolving_hearts": "1f49e", | |
| "rewind": "23ea", | |
| "rhinoceros": "1f98f", | |
| "ribbon": "1f380", | |
| "rice": "1f35a", | |
| "rice_ball": "1f359", | |
| "rice_cracker": "1f358", | |
| "rice_scene": "1f391", | |
| "right_anger_bubble": "1f5ef-fe0f", | |
| "ring": "1f48d", | |
| "robot": "1f916", | |
| "rocket": "1f680", | |
| "rofl": "1f923", | |
| "roll_eyes": "1f644", | |
| "roller_coaster": "1f3a2", | |
| "romania": "1f1f7-1f1f4", | |
| "rooster": "1f413", | |
| "rose": "1f339", | |
| "rosette": "1f3f5-fe0f", | |
| "rotating_light": "1f6a8", | |
| "round_pushpin": "1f4cd", | |
| "rowboat": "1f6a3", | |
| "rowing_man": "1f6a3", | |
| "rowing_woman": "1f6a3-200d-2640-fe0f", | |
| "ru": "1f1f7-1f1fa", | |
| "rugby_football": "1f3c9", | |
| "runner": "1f3c3", | |
| "running": "1f3c3", | |
| "running_man": "1f3c3", | |
| "running_shirt_with_sash": "1f3bd", | |
| "running_woman": "1f3c3-200d-2640-fe0f", | |
| "rwanda": "1f1f7-1f1fc", | |
| "sa": "1f202-fe0f", | |
| "sagittarius": "2650", | |
| "sailboat": "26f5", | |
| "sake": "1f376", | |
| "samoa": "1f1fc-1f1f8", | |
| "san_marino": "1f1f8-1f1f2", | |
| "sandal": "1f461", | |
| "santa": "1f385", | |
| "sao_tome_principe": "1f1f8-1f1f9", | |
| "satellite": "1f4e1", | |
| "satisfied": "1f606", | |
| "saudi_arabia": "1f1f8-1f1e6", | |
| "saxophone": "1f3b7", | |
| "school": "1f3eb", | |
| "school_satchel": "1f392", | |
| "scissors": "2702-fe0f", | |
| "scorpion": "1f982", | |
| "scorpius": "264f", | |
| "scream": "1f631", | |
| "scream_cat": "1f640", | |
| "scroll": "1f4dc", | |
| "seat": "1f4ba", | |
| "secret": "3299-fe0f", | |
| "see_no_evil": "1f648", | |
| "seedling": "1f331", | |
| "selfie": "1f933", | |
| "senegal": "1f1f8-1f1f3", | |
| "serbia": "1f1f7-1f1f8", | |
| "seven": "37-fe0f-20e3", | |
| "seychelles": "1f1f8-1f1e8", | |
| "shallow_pan_of_food": "1f958", | |
| "shamrock": "2618-fe0f", | |
| "shark": "1f988", | |
| "shaved_ice": "1f367", | |
| "sheep": "1f411", | |
| "shell": "1f41a", | |
| "shield": "1f6e1-fe0f", | |
| "shinto_shrine": "26e9-fe0f", | |
| "ship": "1f6a2", | |
| "shirt": "1f455", | |
| "shit": "1f4a9", | |
| "shoe": "1f45e", | |
| "shopping": "1f6cd-fe0f", | |
| "shopping_cart": "1f6d2", | |
| "shower": "1f6bf", | |
| "shrimp": "1f990", | |
| "sierra_leone": "1f1f8-1f1f1", | |
| "signal_strength": "1f4f6", | |
| "singapore": "1f1f8-1f1ec", | |
| "sint_maarten": "1f1f8-1f1fd", | |
| "six": "36-fe0f-20e3", | |
| "six_pointed_star": "1f52f", | |
| "ski": "1f3bf", | |
| "skier": "26f7-fe0f", | |
| "skull": "1f480", | |
| "skull_and_crossbones": "2620-fe0f", | |
| "sleeping": "1f634", | |
| "sleeping_bed": "1f6cc", | |
| "sleepy": "1f62a", | |
| "slightly_frowning_face": "1f641", | |
| "slightly_smiling_face": "1f642", | |
| "slot_machine": "1f3b0", | |
| "slovakia": "1f1f8-1f1f0", | |
| "slovenia": "1f1f8-1f1ee", | |
| "small_airplane": "1f6e9-fe0f", | |
| "small_blue_diamond": "1f539", | |
| "small_orange_diamond": "1f538", | |
| "small_red_triangle": "1f53a", | |
| "small_red_triangle_down": "1f53b", | |
| "smile": "1f604", | |
| "smile_cat": "1f638", | |
| "smiley": "1f603", | |
| "smiley_cat": "1f63a", | |
| "smiling_imp": "1f608", | |
| "smirk": "1f60f", | |
| "smirk_cat": "1f63c", | |
| "smoking": "1f6ac", | |
| "snail": "1f40c", | |
| "snake": "1f40d", | |
| "sneezing_face": "1f927", | |
| "snowboarder": "1f3c2", | |
| "snowflake": "2744-fe0f", | |
| "snowman": "26c4", | |
| "snowman_with_snow": "2603-fe0f", | |
| "sob": "1f62d", | |
| "soccer": "26bd", | |
| "solomon_islands": "1f1f8-1f1e7", | |
| "somalia": "1f1f8-1f1f4", | |
| "soon": "1f51c", | |
| "sos": "1f198", | |
| "sound": "1f509", | |
| "south_africa": "1f1ff-1f1e6", | |
| "south_georgia_south_sandwich_islands": "1f1ec-1f1f8", | |
| "south_sudan": "1f1f8-1f1f8", | |
| "space_invader": "1f47e", | |
| "spades": "2660-fe0f", | |
| "spaghetti": "1f35d", | |
| "sparkle": "2747-fe0f", | |
| "sparkler": "1f387", | |
| "sparkles": "2728", | |
| "sparkling_heart": "1f496", | |
| "speak_no_evil": "1f64a", | |
| "speaker": "1f508", | |
| "speaking_head": "1f5e3-fe0f", | |
| "speech_balloon": "1f4ac", | |
| "speedboat": "1f6a4", | |
| "spider": "1f577-fe0f", | |
| "spider_web": "1f578-fe0f", | |
| "spiral_calendar": "1f5d3-fe0f", | |
| "spiral_notepad": "1f5d2-fe0f", | |
| "spoon": "1f944", | |
| "squid": "1f991", | |
| "sri_lanka": "1f1f1-1f1f0", | |
| "st_barthelemy": "1f1e7-1f1f1", | |
| "st_helena": "1f1f8-1f1ed", | |
| "st_kitts_nevis": "1f1f0-1f1f3", | |
| "st_lucia": "1f1f1-1f1e8", | |
| "st_pierre_miquelon": "1f1f5-1f1f2", | |
| "st_vincent_grenadines": "1f1fb-1f1e8", | |
| "stadium": "1f3df-fe0f", | |
| "star": "2b50", | |
| "star2": "1f31f", | |
| "star_and_crescent": "262a-fe0f", | |
| "star_of_david": "2721-fe0f", | |
| "stars": "1f320", | |
| "station": "1f689", | |
| "statue_of_liberty": "1f5fd", | |
| "steam_locomotive": "1f682", | |
| "stew": "1f372", | |
| "stop_button": "23f9-fe0f", | |
| "stop_sign": "1f6d1", | |
| "stopwatch": "23f1-fe0f", | |
| "straight_ruler": "1f4cf", | |
| "strawberry": "1f353", | |
| "stuck_out_tongue": "1f61b", | |
| "stuck_out_tongue_closed_eyes": "1f61d", | |
| "stuck_out_tongue_winking_eye": "1f61c", | |
| "studio_microphone": "1f399-fe0f", | |
| "stuffed_flatbread": "1f959", | |
| "sudan": "1f1f8-1f1e9", | |
| "sun_behind_large_cloud": "1f325-fe0f", | |
| "sun_behind_rain_cloud": "1f326-fe0f", | |
| "sun_behind_small_cloud": "1f324-fe0f", | |
| "sun_with_face": "1f31e", | |
| "sunflower": "1f33b", | |
| "sunglasses": "1f60e", | |
| "sunny": "2600-fe0f", | |
| "sunrise": "1f305", | |
| "sunrise_over_mountains": "1f304", | |
| "surfer": "1f3c4", | |
| "surfing_man": "1f3c4", | |
| "surfing_woman": "1f3c4-200d-2640-fe0f", | |
| "suriname": "1f1f8-1f1f7", | |
| "sushi": "1f363", | |
| "suspension_railway": "1f69f", | |
| "swaziland": "1f1f8-1f1ff", | |
| "sweat": "1f613", | |
| "sweat_drops": "1f4a6", | |
| "sweat_smile": "1f605", | |
| "sweden": "1f1f8-1f1ea", | |
| "sweet_potato": "1f360", | |
| "swimmer": "1f3ca", | |
| "swimming_man": "1f3ca", | |
| "swimming_woman": "1f3ca-200d-2640-fe0f", | |
| "switzerland": "1f1e8-1f1ed", | |
| "symbols": "1f523", | |
| "synagogue": "1f54d", | |
| "syria": "1f1f8-1f1fe", | |
| "syringe": "1f489", | |
| "taco": "1f32e", | |
| "tada": "1f389", | |
| "taiwan": "1f1f9-1f1fc", | |
| "tajikistan": "1f1f9-1f1ef", | |
| "tanabata_tree": "1f38b", | |
| "tangerine": "1f34a", | |
| "tanzania": "1f1f9-1f1ff", | |
| "taurus": "2649", | |
| "taxi": "1f695", | |
| "tea": "1f375", | |
| "telephone": "260e-fe0f", | |
| "telephone_receiver": "1f4de", | |
| "telescope": "1f52d", | |
| "tennis": "1f3be", | |
| "tent": "26fa", | |
| "thailand": "1f1f9-1f1ed", | |
| "thermometer": "1f321-fe0f", | |
| "thinking": "1f914", | |
| "thought_balloon": "1f4ad", | |
| "three": "33-fe0f-20e3", | |
| "thumbsdown": "1f44e", | |
| "thumbsup": "1f44d", | |
| "ticket": "1f3ab", | |
| "tickets": "1f39f-fe0f", | |
| "tiger": "1f42f", | |
| "tiger2": "1f405", | |
| "timer_clock": "23f2-fe0f", | |
| "timor_leste": "1f1f9-1f1f1", | |
| "tipping_hand_man": "1f481-200d-2642-fe0f", | |
| "tipping_hand_woman": "1f481", | |
| "tired_face": "1f62b", | |
| "tm": "2122-fe0f", | |
| "togo": "1f1f9-1f1ec", | |
| "toilet": "1f6bd", | |
| "tokelau": "1f1f9-1f1f0", | |
| "tokyo_tower": "1f5fc", | |
| "tomato": "1f345", | |
| "tonga": "1f1f9-1f1f4", | |
| "tongue": "1f445", | |
| "top": "1f51d", | |
| "tophat": "1f3a9", | |
| "tornado": "1f32a-fe0f", | |
| "tr": "1f1f9-1f1f7", | |
| "trackball": "1f5b2-fe0f", | |
| "tractor": "1f69c", | |
| "traffic_light": "1f6a5", | |
| "train": "1f68b", | |
| "train2": "1f686", | |
| "tram": "1f68a", | |
| "triangular_flag_on_post": "1f6a9", | |
| "triangular_ruler": "1f4d0", | |
| "trident": "1f531", | |
| "trinidad_tobago": "1f1f9-1f1f9", | |
| "triumph": "1f624", | |
| "trolleybus": "1f68e", | |
| "trophy": "1f3c6", | |
| "tropical_drink": "1f379", | |
| "tropical_fish": "1f420", | |
| "truck": "1f69a", | |
| "trumpet": "1f3ba", | |
| "tshirt": "1f455", | |
| "tulip": "1f337", | |
| "tumbler_glass": "1f943", | |
| "tunisia": "1f1f9-1f1f3", | |
| "turkey": "1f983", | |
| "turkmenistan": "1f1f9-1f1f2", | |
| "turks_caicos_islands": "1f1f9-1f1e8", | |
| "turtle": "1f422", | |
| "tuvalu": "1f1f9-1f1fb", | |
| "tv": "1f4fa", | |
| "twisted_rightwards_arrows": "1f500", | |
| "two": "32-fe0f-20e3", | |
| "two_hearts": "1f495", | |
| "two_men_holding_hands": "1f46c", | |
| "two_women_holding_hands": "1f46d", | |
| "u5272": "1f239", | |
| "u5408": "1f234", | |
| "u55b6": "1f23a", | |
| "u6307": "1f22f", | |
| "u6708": "1f237-fe0f", | |
| "u6709": "1f236", | |
| "u6e80": "1f235", | |
| "u7121": "1f21a", | |
| "u7533": "1f238", | |
| "u7981": "1f232", | |
| "u7a7a": "1f233", | |
| "uganda": "1f1fa-1f1ec", | |
| "uk": "1f1ec-1f1e7", | |
| "ukraine": "1f1fa-1f1e6", | |
| "umbrella": "2614", | |
| "unamused": "1f612", | |
| "underage": "1f51e", | |
| "unicorn": "1f984", | |
| "united_arab_emirates": "1f1e6-1f1ea", | |
| "unlock": "1f513", | |
| "up": "1f199", | |
| "upside_down_face": "1f643", | |
| "uruguay": "1f1fa-1f1fe", | |
| "us": "1f1fa-1f1f8", | |
| "us_virgin_islands": "1f1fb-1f1ee", | |
| "uzbekistan": "1f1fa-1f1ff", | |
| "v": "270c-fe0f", | |
| "vanuatu": "1f1fb-1f1fa", | |
| "vatican_city": "1f1fb-1f1e6", | |
| "venezuela": "1f1fb-1f1ea", | |
| "vertical_traffic_light": "1f6a6", | |
| "vhs": "1f4fc", | |
| "vibration_mode": "1f4f3", | |
| "video_camera": "1f4f9", | |
| "video_game": "1f3ae", | |
| "vietnam": "1f1fb-1f1f3", | |
| "violin": "1f3bb", | |
| "virgo": "264d", | |
| "volcano": "1f30b", | |
| "volleyball": "1f3d0", | |
| "vs": "1f19a", | |
| "vulcan_salute": "1f596", | |
| "walking": "1f6b6", | |
| "walking_man": "1f6b6", | |
| "walking_woman": "1f6b6-200d-2640-fe0f", | |
| "wallis_futuna": "1f1fc-1f1eb", | |
| "waning_crescent_moon": "1f318", | |
| "waning_gibbous_moon": "1f316", | |
| "warning": "26a0-fe0f", | |
| "wastebasket": "1f5d1-fe0f", | |
| "watch": "231a", | |
| "water_buffalo": "1f403", | |
| "watermelon": "1f349", | |
| "wave": "1f44b", | |
| "wavy_dash": "3030-fe0f", | |
| "waxing_crescent_moon": "1f312", | |
| "waxing_gibbous_moon": "1f314", | |
| "wc": "1f6be", | |
| "weary": "1f629", | |
| "wedding": "1f492", | |
| "weight_lifting_man": "1f3cb-fe0f", | |
| "weight_lifting_woman": "1f3cb-fe0f-200d-2640-fe0f", | |
| "western_sahara": "1f1ea-1f1ed", | |
| "whale": "1f433", | |
| "whale2": "1f40b", | |
| "wheel_of_dharma": "2638-fe0f", | |
| "wheelchair": "267f", | |
| "white_check_mark": "2705", | |
| "white_circle": "26aa", | |
| "white_flag": "1f3f3-fe0f", | |
| "white_flower": "1f4ae", | |
| "white_large_square": "2b1c", | |
| "white_medium_small_square": "25fd", | |
| "white_medium_square": "25fb-fe0f", | |
| "white_small_square": "25ab-fe0f", | |
| "white_square_button": "1f533", | |
| "wilted_flower": "1f940", | |
| "wind_chime": "1f390", | |
| "wind_face": "1f32c-fe0f", | |
| "wine_glass": "1f377", | |
| "wink": "1f609", | |
| "wolf": "1f43a", | |
| "woman": "1f469", | |
| "woman_artist": "1f469-200d-1f3a8", | |
| "woman_astronaut": "1f469-200d-1f680", | |
| "woman_cartwheeling": "1f938-200d-2640-fe0f", | |
| "woman_cook": "1f469-200d-1f373", | |
| "woman_facepalming": "1f926-200d-2640-fe0f", | |
| "woman_factory_worker": "1f469-200d-1f3ed", | |
| "woman_farmer": "1f469-200d-1f33e", | |
| "woman_firefighter": "1f469-200d-1f692", | |
| "woman_health_worker": "1f469-200d-2695-fe0f", | |
| "woman_judge": "1f469-200d-2696-fe0f", | |
| "woman_juggling": "1f939-200d-2640-fe0f", | |
| "woman_mechanic": "1f469-200d-1f527", | |
| "woman_office_worker": "1f469-200d-1f4bc", | |
| "woman_pilot": "1f469-200d-2708-fe0f", | |
| "woman_playing_handball": "1f93e-200d-2640-fe0f", | |
| "woman_playing_water_polo": "1f93d-200d-2640-fe0f", | |
| "woman_scientist": "1f469-200d-1f52c", | |
| "woman_shrugging": "1f937-200d-2640-fe0f", | |
| "woman_singer": "1f469-200d-1f3a4", | |
| "woman_student": "1f469-200d-1f393", | |
| "woman_teacher": "1f469-200d-1f3eb", | |
| "woman_technologist": "1f469-200d-1f4bb", | |
| "woman_with_turban": "1f473-200d-2640-fe0f", | |
| "womans_clothes": "1f45a", | |
| "womans_hat": "1f452", | |
| "women_wrestling": "1f93c-200d-2640-fe0f", | |
| "womens": "1f6ba", | |
| "world_map": "1f5fa-fe0f", | |
| "worried": "1f61f", | |
| "wrench": "1f527", | |
| "writing_hand": "270d-fe0f", | |
| "x": "274c", | |
| "yellow_heart": "1f49b", | |
| "yemen": "1f1fe-1f1ea", | |
| "yen": "1f4b4", | |
| "yin_yang": "262f-fe0f", | |
| "yum": "1f60b", | |
| "zambia": "1f1ff-1f1f2", | |
| "zap": "26a1", | |
| "zero": "30-fe0f-20e3", | |
| "zimbabwe": "1f1ff-1f1fc", | |
| "zipper_mouth_face": "1f910", | |
| "zzz": "1f4a4" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment