mailer_emoji_map.json 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857
  1. {
  2. "+1": "๐Ÿ‘",
  3. "-1": "๐Ÿ‘Ž",
  4. "100": "๐Ÿ’ฏ",
  5. "1234": "๐Ÿ”ข",
  6. "1st_place_medal": "๐Ÿฅ‡",
  7. "2nd_place_medal": "๐Ÿฅˆ",
  8. "3rd_place_medal": "๐Ÿฅ‰",
  9. "8ball": "๐ŸŽฑ",
  10. "a": "๐Ÿ…ฐ๏ธ",
  11. "ab": "๐Ÿ†Ž",
  12. "abacus": "๐Ÿงฎ",
  13. "abc": "๐Ÿ”ค",
  14. "abcd": "๐Ÿ”ก",
  15. "accept": "๐Ÿ‰‘",
  16. "accordion": "๐Ÿช—",
  17. "adhesive_bandage": "๐Ÿฉน",
  18. "adult": "๐Ÿง‘",
  19. "aerial_tramway": "๐Ÿšก",
  20. "afghanistan": "๐Ÿ‡ฆ๐Ÿ‡ซ",
  21. "airplane": "โœˆ๏ธ",
  22. "aland_islands": "๐Ÿ‡ฆ๐Ÿ‡ฝ",
  23. "alarm_clock": "โฐ",
  24. "albania": "๐Ÿ‡ฆ๐Ÿ‡ฑ",
  25. "alembic": "โš—๏ธ",
  26. "algeria": "๐Ÿ‡ฉ๐Ÿ‡ฟ",
  27. "alien": "๐Ÿ‘ฝ",
  28. "ambulance": "๐Ÿš‘",
  29. "american_samoa": "๐Ÿ‡ฆ๐Ÿ‡ธ",
  30. "amphora": "๐Ÿบ",
  31. "anatomical_heart": "๐Ÿซ€",
  32. "anchor": "โš“",
  33. "andorra": "๐Ÿ‡ฆ๐Ÿ‡ฉ",
  34. "angel": "๐Ÿ‘ผ",
  35. "anger": "๐Ÿ’ข",
  36. "angola": "๐Ÿ‡ฆ๐Ÿ‡ด",
  37. "angry": "๐Ÿ˜ ",
  38. "anguilla": "๐Ÿ‡ฆ๐Ÿ‡ฎ",
  39. "anguished": "๐Ÿ˜ง",
  40. "ant": "๐Ÿœ",
  41. "antarctica": "๐Ÿ‡ฆ๐Ÿ‡ถ",
  42. "antigua_barbuda": "๐Ÿ‡ฆ๐Ÿ‡ฌ",
  43. "apple": "๐ŸŽ",
  44. "aquarius": "โ™’",
  45. "argentina": "๐Ÿ‡ฆ๐Ÿ‡ท",
  46. "aries": "โ™ˆ",
  47. "armenia": "๐Ÿ‡ฆ๐Ÿ‡ฒ",
  48. "arrow_backward": "โ—€๏ธ",
  49. "arrow_double_down": "โฌ",
  50. "arrow_double_up": "โซ",
  51. "arrow_down": "โฌ‡๏ธ",
  52. "arrow_down_small": "๐Ÿ”ฝ",
  53. "arrow_forward": "โ–ถ๏ธ",
  54. "arrow_heading_down": "โคต๏ธ",
  55. "arrow_heading_up": "โคด๏ธ",
  56. "arrow_left": "โฌ…๏ธ",
  57. "arrow_lower_left": "โ†™๏ธ",
  58. "arrow_lower_right": "โ†˜๏ธ",
  59. "arrow_right": "โžก๏ธ",
  60. "arrow_right_hook": "โ†ช๏ธ",
  61. "arrow_up": "โฌ†๏ธ",
  62. "arrow_up_down": "โ†•๏ธ",
  63. "arrow_up_small": "๐Ÿ”ผ",
  64. "arrow_upper_left": "โ†–๏ธ",
  65. "arrow_upper_right": "โ†—๏ธ",
  66. "arrows_clockwise": "๐Ÿ”ƒ",
  67. "arrows_counterclockwise": "๐Ÿ”„",
  68. "art": "๐ŸŽจ",
  69. "articulated_lorry": "๐Ÿš›",
  70. "artificial_satellite": "๐Ÿ›ฐ๏ธ",
  71. "artist": "๐Ÿง‘โ€๐ŸŽจ",
  72. "aruba": "๐Ÿ‡ฆ๐Ÿ‡ผ",
  73. "ascension_island": "๐Ÿ‡ฆ๐Ÿ‡จ",
  74. "asterisk": "*๏ธโƒฃ",
  75. "astonished": "๐Ÿ˜ฒ",
  76. "astronaut": "๐Ÿง‘โ€๐Ÿš€",
  77. "athletic_shoe": "๐Ÿ‘Ÿ",
  78. "atm": "๐Ÿง",
  79. "atom_symbol": "โš›๏ธ",
  80. "australia": "๐Ÿ‡ฆ๐Ÿ‡บ",
  81. "austria": "๐Ÿ‡ฆ๐Ÿ‡น",
  82. "auto_rickshaw": "๐Ÿ›บ",
  83. "avocado": "๐Ÿฅ‘",
  84. "axe": "๐Ÿช“",
  85. "azerbaijan": "๐Ÿ‡ฆ๐Ÿ‡ฟ",
  86. "b": "๐Ÿ…ฑ๏ธ",
  87. "baby": "๐Ÿ‘ถ",
  88. "baby_bottle": "๐Ÿผ",
  89. "baby_chick": "๐Ÿค",
  90. "baby_symbol": "๐Ÿšผ",
  91. "back": "๐Ÿ”™",
  92. "bacon": "๐Ÿฅ“",
  93. "badger": "๐Ÿฆก",
  94. "badminton": "๐Ÿธ",
  95. "bagel": "๐Ÿฅฏ",
  96. "baggage_claim": "๐Ÿ›„",
  97. "baguette_bread": "๐Ÿฅ–",
  98. "bahamas": "๐Ÿ‡ง๐Ÿ‡ธ",
  99. "bahrain": "๐Ÿ‡ง๐Ÿ‡ญ",
  100. "balance_scale": "โš–๏ธ",
  101. "bald_man": "๐Ÿ‘จโ€๐Ÿฆฒ",
  102. "bald_woman": "๐Ÿ‘ฉโ€๐Ÿฆฒ",
  103. "ballet_shoes": "๐Ÿฉฐ",
  104. "balloon": "๐ŸŽˆ",
  105. "ballot_box": "๐Ÿ—ณ๏ธ",
  106. "ballot_box_with_check": "โ˜‘๏ธ",
  107. "bamboo": "๐ŸŽ",
  108. "banana": "๐ŸŒ",
  109. "bangbang": "โ€ผ๏ธ",
  110. "bangladesh": "๐Ÿ‡ง๐Ÿ‡ฉ",
  111. "banjo": "๐Ÿช•",
  112. "bank": "๐Ÿฆ",
  113. "bar_chart": "๐Ÿ“Š",
  114. "barbados": "๐Ÿ‡ง๐Ÿ‡ง",
  115. "barber": "๐Ÿ’ˆ",
  116. "baseball": "โšพ",
  117. "basket": "๐Ÿงบ",
  118. "basketball": "๐Ÿ€",
  119. "basketball_man": "โ›น๏ธโ€โ™‚๏ธ",
  120. "basketball_woman": "โ›น๏ธโ€โ™€๏ธ",
  121. "bat": "๐Ÿฆ‡",
  122. "bath": "๐Ÿ›€",
  123. "bathtub": "๐Ÿ›",
  124. "battery": "๐Ÿ”‹",
  125. "beach_umbrella": "๐Ÿ–๏ธ",
  126. "bear": "๐Ÿป",
  127. "bearded_person": "๐Ÿง”",
  128. "beaver": "๐Ÿฆซ",
  129. "bed": "๐Ÿ›๏ธ",
  130. "bee": "๐Ÿ",
  131. "beer": "๐Ÿบ",
  132. "beers": "๐Ÿป",
  133. "beetle": "๐Ÿชฒ",
  134. "beginner": "๐Ÿ”ฐ",
  135. "belarus": "๐Ÿ‡ง๐Ÿ‡พ",
  136. "belgium": "๐Ÿ‡ง๐Ÿ‡ช",
  137. "belize": "๐Ÿ‡ง๐Ÿ‡ฟ",
  138. "bell": "๐Ÿ””",
  139. "bell_pepper": "๐Ÿซ‘",
  140. "bellhop_bell": "๐Ÿ›Ž๏ธ",
  141. "benin": "๐Ÿ‡ง๐Ÿ‡ฏ",
  142. "bento": "๐Ÿฑ",
  143. "bermuda": "๐Ÿ‡ง๐Ÿ‡ฒ",
  144. "beverage_box": "๐Ÿงƒ",
  145. "bhutan": "๐Ÿ‡ง๐Ÿ‡น",
  146. "bicyclist": "๐Ÿšด",
  147. "bike": "๐Ÿšฒ",
  148. "biking_man": "๐Ÿšดโ€โ™‚๏ธ",
  149. "biking_woman": "๐Ÿšดโ€โ™€๏ธ",
  150. "bikini": "๐Ÿ‘™",
  151. "billed_cap": "๐Ÿงข",
  152. "biohazard": "โ˜ฃ๏ธ",
  153. "bird": "๐Ÿฆ",
  154. "birthday": "๐ŸŽ‚",
  155. "bison": "๐Ÿฆฌ",
  156. "black_cat": "๐Ÿˆโ€โฌ›",
  157. "black_circle": "โšซ",
  158. "black_flag": "๐Ÿด",
  159. "black_heart": "๐Ÿ–ค",
  160. "black_joker": "๐Ÿƒ",
  161. "black_large_square": "โฌ›",
  162. "black_medium_small_square": "โ—พ",
  163. "black_medium_square": "โ—ผ๏ธ",
  164. "black_nib": "โœ’๏ธ",
  165. "black_small_square": "โ–ช๏ธ",
  166. "black_square_button": "๐Ÿ”ฒ",
  167. "blond_haired_man": "๐Ÿ‘ฑโ€โ™‚๏ธ",
  168. "blond_haired_person": "๐Ÿ‘ฑ",
  169. "blond_haired_woman": "๐Ÿ‘ฑโ€โ™€๏ธ",
  170. "blonde_woman": "๐Ÿ‘ฑโ€โ™€๏ธ",
  171. "blossom": "๐ŸŒผ",
  172. "blowfish": "๐Ÿก",
  173. "blue_book": "๐Ÿ“˜",
  174. "blue_car": "๐Ÿš™",
  175. "blue_heart": "๐Ÿ’™",
  176. "blue_square": "๐ŸŸฆ",
  177. "blueberries": "๐Ÿซ",
  178. "blush": "๐Ÿ˜Š",
  179. "boar": "๐Ÿ—",
  180. "boat": "โ›ต",
  181. "bolivia": "๐Ÿ‡ง๐Ÿ‡ด",
  182. "bomb": "๐Ÿ’ฃ",
  183. "bone": "๐Ÿฆด",
  184. "book": "๐Ÿ“–",
  185. "bookmark": "๐Ÿ”–",
  186. "bookmark_tabs": "๐Ÿ“‘",
  187. "books": "๐Ÿ“š",
  188. "boom": "๐Ÿ’ฅ",
  189. "boomerang": "๐Ÿชƒ",
  190. "boot": "๐Ÿ‘ข",
  191. "bosnia_herzegovina": "๐Ÿ‡ง๐Ÿ‡ฆ",
  192. "botswana": "๐Ÿ‡ง๐Ÿ‡ผ",
  193. "bouncing_ball_man": "โ›น๏ธโ€โ™‚๏ธ",
  194. "bouncing_ball_person": "โ›น๏ธ",
  195. "bouncing_ball_woman": "โ›น๏ธโ€โ™€๏ธ",
  196. "bouquet": "๐Ÿ’",
  197. "bouvet_island": "๐Ÿ‡ง๐Ÿ‡ป",
  198. "bow": "๐Ÿ™‡",
  199. "bow_and_arrow": "๐Ÿน",
  200. "bowing_man": "๐Ÿ™‡โ€โ™‚๏ธ",
  201. "bowing_woman": "๐Ÿ™‡โ€โ™€๏ธ",
  202. "bowl_with_spoon": "๐Ÿฅฃ",
  203. "bowling": "๐ŸŽณ",
  204. "boxing_glove": "๐ŸฅŠ",
  205. "boy": "๐Ÿ‘ฆ",
  206. "brain": "๐Ÿง ",
  207. "brazil": "๐Ÿ‡ง๐Ÿ‡ท",
  208. "bread": "๐Ÿž",
  209. "breast_feeding": "๐Ÿคฑ",
  210. "bricks": "๐Ÿงฑ",
  211. "bride_with_veil": "๐Ÿ‘ฐโ€โ™€๏ธ",
  212. "bridge_at_night": "๐ŸŒ‰",
  213. "briefcase": "๐Ÿ’ผ",
  214. "british_indian_ocean_territory": "๐Ÿ‡ฎ๐Ÿ‡ด",
  215. "british_virgin_islands": "๐Ÿ‡ป๐Ÿ‡ฌ",
  216. "broccoli": "๐Ÿฅฆ",
  217. "broken_heart": "๐Ÿ’”",
  218. "broom": "๐Ÿงน",
  219. "brown_circle": "๐ŸŸค",
  220. "brown_heart": "๐ŸคŽ",
  221. "brown_square": "๐ŸŸซ",
  222. "brunei": "๐Ÿ‡ง๐Ÿ‡ณ",
  223. "bubble_tea": "๐Ÿง‹",
  224. "bucket": "๐Ÿชฃ",
  225. "bug": "๐Ÿ›",
  226. "building_construction": "๐Ÿ—๏ธ",
  227. "bulb": "๐Ÿ’ก",
  228. "bulgaria": "๐Ÿ‡ง๐Ÿ‡ฌ",
  229. "bullettrain_front": "๐Ÿš…",
  230. "bullettrain_side": "๐Ÿš„",
  231. "burkina_faso": "๐Ÿ‡ง๐Ÿ‡ซ",
  232. "burrito": "๐ŸŒฏ",
  233. "burundi": "๐Ÿ‡ง๐Ÿ‡ฎ",
  234. "bus": "๐ŸšŒ",
  235. "business_suit_levitating": "๐Ÿ•ด๏ธ",
  236. "busstop": "๐Ÿš",
  237. "bust_in_silhouette": "๐Ÿ‘ค",
  238. "busts_in_silhouette": "๐Ÿ‘ฅ",
  239. "butter": "๐Ÿงˆ",
  240. "butterfly": "๐Ÿฆ‹",
  241. "cactus": "๐ŸŒต",
  242. "cake": "๐Ÿฐ",
  243. "calendar": "๐Ÿ“†",
  244. "call_me_hand": "๐Ÿค™",
  245. "calling": "๐Ÿ“ฒ",
  246. "cambodia": "๐Ÿ‡ฐ๐Ÿ‡ญ",
  247. "camel": "๐Ÿซ",
  248. "camera": "๐Ÿ“ท",
  249. "camera_flash": "๐Ÿ“ธ",
  250. "cameroon": "๐Ÿ‡จ๐Ÿ‡ฒ",
  251. "camping": "๐Ÿ•๏ธ",
  252. "canada": "๐Ÿ‡จ๐Ÿ‡ฆ",
  253. "canary_islands": "๐Ÿ‡ฎ๐Ÿ‡จ",
  254. "cancer": "โ™‹",
  255. "candle": "๐Ÿ•ฏ๏ธ",
  256. "candy": "๐Ÿฌ",
  257. "canned_food": "๐Ÿฅซ",
  258. "canoe": "๐Ÿ›ถ",
  259. "cape_verde": "๐Ÿ‡จ๐Ÿ‡ป",
  260. "capital_abcd": "๐Ÿ” ",
  261. "capricorn": "โ™‘",
  262. "car": "๐Ÿš—",
  263. "card_file_box": "๐Ÿ—ƒ๏ธ",
  264. "card_index": "๐Ÿ“‡",
  265. "card_index_dividers": "๐Ÿ—‚๏ธ",
  266. "caribbean_netherlands": "๐Ÿ‡ง๐Ÿ‡ถ",
  267. "carousel_horse": "๐ŸŽ ",
  268. "carpentry_saw": "๐Ÿชš",
  269. "carrot": "๐Ÿฅ•",
  270. "cartwheeling": "๐Ÿคธ",
  271. "cat": "๐Ÿฑ",
  272. "cat2": "๐Ÿˆ",
  273. "cayman_islands": "๐Ÿ‡ฐ๐Ÿ‡พ",
  274. "cd": "๐Ÿ’ฟ",
  275. "central_african_republic": "๐Ÿ‡จ๐Ÿ‡ซ",
  276. "ceuta_melilla": "๐Ÿ‡ช๐Ÿ‡ฆ",
  277. "chad": "๐Ÿ‡น๐Ÿ‡ฉ",
  278. "chains": "โ›“๏ธ",
  279. "chair": "๐Ÿช‘",
  280. "champagne": "๐Ÿพ",
  281. "chart": "๐Ÿ’น",
  282. "chart_with_downwards_trend": "๐Ÿ“‰",
  283. "chart_with_upwards_trend": "๐Ÿ“ˆ",
  284. "checkered_flag": "๐Ÿ",
  285. "cheese": "๐Ÿง€",
  286. "cherries": "๐Ÿ’",
  287. "cherry_blossom": "๐ŸŒธ",
  288. "chess_pawn": "โ™Ÿ๏ธ",
  289. "chestnut": "๐ŸŒฐ",
  290. "chicken": "๐Ÿ”",
  291. "child": "๐Ÿง’",
  292. "children_crossing": "๐Ÿšธ",
  293. "chile": "๐Ÿ‡จ๐Ÿ‡ฑ",
  294. "chipmunk": "๐Ÿฟ๏ธ",
  295. "chocolate_bar": "๐Ÿซ",
  296. "chopsticks": "๐Ÿฅข",
  297. "christmas_island": "๐Ÿ‡จ๐Ÿ‡ฝ",
  298. "christmas_tree": "๐ŸŽ„",
  299. "church": "โ›ช",
  300. "cinema": "๐ŸŽฆ",
  301. "circus_tent": "๐ŸŽช",
  302. "city_sunrise": "๐ŸŒ‡",
  303. "city_sunset": "๐ŸŒ†",
  304. "cityscape": "๐Ÿ™๏ธ",
  305. "cl": "๐Ÿ†‘",
  306. "clamp": "๐Ÿ—œ๏ธ",
  307. "clap": "๐Ÿ‘",
  308. "clapper": "๐ŸŽฌ",
  309. "classical_building": "๐Ÿ›๏ธ",
  310. "climbing": "๐Ÿง—",
  311. "climbing_man": "๐Ÿง—โ€โ™‚๏ธ",
  312. "climbing_woman": "๐Ÿง—โ€โ™€๏ธ",
  313. "clinking_glasses": "๐Ÿฅ‚",
  314. "clipboard": "๐Ÿ“‹",
  315. "clipperton_island": "๐Ÿ‡จ๐Ÿ‡ต",
  316. "clock1": "๐Ÿ•",
  317. "clock10": "๐Ÿ•™",
  318. "clock1030": "๐Ÿ•ฅ",
  319. "clock11": "๐Ÿ•š",
  320. "clock1130": "๐Ÿ•ฆ",
  321. "clock12": "๐Ÿ•›",
  322. "clock1230": "๐Ÿ•ง",
  323. "clock130": "๐Ÿ•œ",
  324. "clock2": "๐Ÿ•‘",
  325. "clock230": "๐Ÿ•",
  326. "clock3": "๐Ÿ•’",
  327. "clock330": "๐Ÿ•ž",
  328. "clock4": "๐Ÿ•“",
  329. "clock430": "๐Ÿ•Ÿ",
  330. "clock5": "๐Ÿ•”",
  331. "clock530": "๐Ÿ• ",
  332. "clock6": "๐Ÿ••",
  333. "clock630": "๐Ÿ•ก",
  334. "clock7": "๐Ÿ•–",
  335. "clock730": "๐Ÿ•ข",
  336. "clock8": "๐Ÿ•—",
  337. "clock830": "๐Ÿ•ฃ",
  338. "clock9": "๐Ÿ•˜",
  339. "clock930": "๐Ÿ•ค",
  340. "closed_book": "๐Ÿ“•",
  341. "closed_lock_with_key": "๐Ÿ”",
  342. "closed_umbrella": "๐ŸŒ‚",
  343. "cloud": "โ˜๏ธ",
  344. "cloud_with_lightning": "๐ŸŒฉ๏ธ",
  345. "cloud_with_lightning_and_rain": "โ›ˆ๏ธ",
  346. "cloud_with_rain": "๐ŸŒง๏ธ",
  347. "cloud_with_snow": "๐ŸŒจ๏ธ",
  348. "clown_face": "๐Ÿคก",
  349. "clubs": "โ™ฃ๏ธ",
  350. "cn": "๐Ÿ‡จ๐Ÿ‡ณ",
  351. "coat": "๐Ÿงฅ",
  352. "cockroach": "๐Ÿชณ",
  353. "cocktail": "๐Ÿธ",
  354. "coconut": "๐Ÿฅฅ",
  355. "cocos_islands": "๐Ÿ‡จ๐Ÿ‡จ",
  356. "coffee": "โ˜•",
  357. "coffin": "โšฐ๏ธ",
  358. "coin": "๐Ÿช™",
  359. "cold_face": "๐Ÿฅถ",
  360. "cold_sweat": "๐Ÿ˜ฐ",
  361. "collision": "๐Ÿ’ฅ",
  362. "colombia": "๐Ÿ‡จ๐Ÿ‡ด",
  363. "comet": "โ˜„๏ธ",
  364. "comoros": "๐Ÿ‡ฐ๐Ÿ‡ฒ",
  365. "compass": "๐Ÿงญ",
  366. "computer": "๐Ÿ’ป",
  367. "computer_mouse": "๐Ÿ–ฑ๏ธ",
  368. "confetti_ball": "๐ŸŽŠ",
  369. "confounded": "๐Ÿ˜–",
  370. "confused": "๐Ÿ˜•",
  371. "congo_brazzaville": "๐Ÿ‡จ๐Ÿ‡ฌ",
  372. "congo_kinshasa": "๐Ÿ‡จ๐Ÿ‡ฉ",
  373. "congratulations": "ใŠ—๏ธ",
  374. "construction": "๐Ÿšง",
  375. "construction_worker": "๐Ÿ‘ท",
  376. "construction_worker_man": "๐Ÿ‘ทโ€โ™‚๏ธ",
  377. "construction_worker_woman": "๐Ÿ‘ทโ€โ™€๏ธ",
  378. "control_knobs": "๐ŸŽ›๏ธ",
  379. "convenience_store": "๐Ÿช",
  380. "cook": "๐Ÿง‘โ€๐Ÿณ",
  381. "cook_islands": "๐Ÿ‡จ๐Ÿ‡ฐ",
  382. "cookie": "๐Ÿช",
  383. "cool": "๐Ÿ†’",
  384. "cop": "๐Ÿ‘ฎ",
  385. "copyright": "ยฉ๏ธ",
  386. "corn": "๐ŸŒฝ",
  387. "costa_rica": "๐Ÿ‡จ๐Ÿ‡ท",
  388. "cote_divoire": "๐Ÿ‡จ๐Ÿ‡ฎ",
  389. "couch_and_lamp": "๐Ÿ›‹๏ธ",
  390. "couple": "๐Ÿ‘ซ",
  391. "couple_with_heart": "๐Ÿ’‘",
  392. "couple_with_heart_man_man": "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ",
  393. "couple_with_heart_woman_man": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ",
  394. "couple_with_heart_woman_woman": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ",
  395. "couplekiss": "๐Ÿ’",
  396. "couplekiss_man_man": "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ",
  397. "couplekiss_man_woman": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ",
  398. "couplekiss_woman_woman": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ",
  399. "cow": "๐Ÿฎ",
  400. "cow2": "๐Ÿ„",
  401. "cowboy_hat_face": "๐Ÿค ",
  402. "crab": "๐Ÿฆ€",
  403. "crayon": "๐Ÿ–๏ธ",
  404. "credit_card": "๐Ÿ’ณ",
  405. "crescent_moon": "๐ŸŒ™",
  406. "cricket": "๐Ÿฆ—",
  407. "cricket_game": "๐Ÿ",
  408. "croatia": "๐Ÿ‡ญ๐Ÿ‡ท",
  409. "crocodile": "๐ŸŠ",
  410. "croissant": "๐Ÿฅ",
  411. "crossed_fingers": "๐Ÿคž",
  412. "crossed_flags": "๐ŸŽŒ",
  413. "crossed_swords": "โš”๏ธ",
  414. "crown": "๐Ÿ‘‘",
  415. "cry": "๐Ÿ˜ข",
  416. "crying_cat_face": "๐Ÿ˜ฟ",
  417. "crystal_ball": "๐Ÿ”ฎ",
  418. "cuba": "๐Ÿ‡จ๐Ÿ‡บ",
  419. "cucumber": "๐Ÿฅ’",
  420. "cup_with_straw": "๐Ÿฅค",
  421. "cupcake": "๐Ÿง",
  422. "cupid": "๐Ÿ’˜",
  423. "curacao": "๐Ÿ‡จ๐Ÿ‡ผ",
  424. "curling_stone": "๐ŸฅŒ",
  425. "curly_haired_man": "๐Ÿ‘จโ€๐Ÿฆฑ",
  426. "curly_haired_woman": "๐Ÿ‘ฉโ€๐Ÿฆฑ",
  427. "curly_loop": "โžฐ",
  428. "currency_exchange": "๐Ÿ’ฑ",
  429. "curry": "๐Ÿ›",
  430. "cursing_face": "๐Ÿคฌ",
  431. "custard": "๐Ÿฎ",
  432. "customs": "๐Ÿ›ƒ",
  433. "cut_of_meat": "๐Ÿฅฉ",
  434. "cyclone": "๐ŸŒ€",
  435. "cyprus": "๐Ÿ‡จ๐Ÿ‡พ",
  436. "czech_republic": "๐Ÿ‡จ๐Ÿ‡ฟ",
  437. "dagger": "๐Ÿ—ก๏ธ",
  438. "dancer": "๐Ÿ’ƒ",
  439. "dancers": "๐Ÿ‘ฏ",
  440. "dancing_men": "๐Ÿ‘ฏโ€โ™‚๏ธ",
  441. "dancing_women": "๐Ÿ‘ฏโ€โ™€๏ธ",
  442. "dango": "๐Ÿก",
  443. "dark_sunglasses": "๐Ÿ•ถ๏ธ",
  444. "dart": "๐ŸŽฏ",
  445. "dash": "๐Ÿ’จ",
  446. "date": "๐Ÿ“…",
  447. "de": "๐Ÿ‡ฉ๐Ÿ‡ช",
  448. "deaf_man": "๐Ÿงโ€โ™‚๏ธ",
  449. "deaf_person": "๐Ÿง",
  450. "deaf_woman": "๐Ÿงโ€โ™€๏ธ",
  451. "deciduous_tree": "๐ŸŒณ",
  452. "deer": "๐ŸฆŒ",
  453. "denmark": "๐Ÿ‡ฉ๐Ÿ‡ฐ",
  454. "department_store": "๐Ÿฌ",
  455. "derelict_house": "๐Ÿš๏ธ",
  456. "desert": "๐Ÿœ๏ธ",
  457. "desert_island": "๐Ÿ๏ธ",
  458. "desktop_computer": "๐Ÿ–ฅ๏ธ",
  459. "detective": "๐Ÿ•ต๏ธ",
  460. "diamond_shape_with_a_dot_inside": "๐Ÿ’ ",
  461. "diamonds": "โ™ฆ๏ธ",
  462. "diego_garcia": "๐Ÿ‡ฉ๐Ÿ‡ฌ",
  463. "disappointed": "๐Ÿ˜ž",
  464. "disappointed_relieved": "๐Ÿ˜ฅ",
  465. "disguised_face": "๐Ÿฅธ",
  466. "diving_mask": "๐Ÿคฟ",
  467. "diya_lamp": "๐Ÿช”",
  468. "dizzy": "๐Ÿ’ซ",
  469. "dizzy_face": "๐Ÿ˜ต",
  470. "djibouti": "๐Ÿ‡ฉ๐Ÿ‡ฏ",
  471. "dna": "๐Ÿงฌ",
  472. "do_not_litter": "๐Ÿšฏ",
  473. "dodo": "๐Ÿฆค",
  474. "dog": "๐Ÿถ",
  475. "dog2": "๐Ÿ•",
  476. "dollar": "๐Ÿ’ต",
  477. "dolls": "๐ŸŽŽ",
  478. "dolphin": "๐Ÿฌ",
  479. "dominica": "๐Ÿ‡ฉ๐Ÿ‡ฒ",
  480. "dominican_republic": "๐Ÿ‡ฉ๐Ÿ‡ด",
  481. "door": "๐Ÿšช",
  482. "doughnut": "๐Ÿฉ",
  483. "dove": "๐Ÿ•Š๏ธ",
  484. "dragon": "๐Ÿ‰",
  485. "dragon_face": "๐Ÿฒ",
  486. "dress": "๐Ÿ‘—",
  487. "dromedary_camel": "๐Ÿช",
  488. "drooling_face": "๐Ÿคค",
  489. "drop_of_blood": "๐Ÿฉธ",
  490. "droplet": "๐Ÿ’ง",
  491. "drum": "๐Ÿฅ",
  492. "duck": "๐Ÿฆ†",
  493. "dumpling": "๐ŸฅŸ",
  494. "dvd": "๐Ÿ“€",
  495. "e-mail": "๐Ÿ“ง",
  496. "eagle": "๐Ÿฆ…",
  497. "ear": "๐Ÿ‘‚",
  498. "ear_of_rice": "๐ŸŒพ",
  499. "ear_with_hearing_aid": "๐Ÿฆป",
  500. "earth_africa": "๐ŸŒ",
  501. "earth_americas": "๐ŸŒŽ",
  502. "earth_asia": "๐ŸŒ",
  503. "ecuador": "๐Ÿ‡ช๐Ÿ‡จ",
  504. "egg": "๐Ÿฅš",
  505. "eggplant": "๐Ÿ†",
  506. "egypt": "๐Ÿ‡ช๐Ÿ‡ฌ",
  507. "eight": "8๏ธโƒฃ",
  508. "eight_pointed_black_star": "โœด๏ธ",
  509. "eight_spoked_asterisk": "โœณ๏ธ",
  510. "eject_button": "โ๏ธ",
  511. "el_salvador": "๐Ÿ‡ธ๐Ÿ‡ป",
  512. "electric_plug": "๐Ÿ”Œ",
  513. "elephant": "๐Ÿ˜",
  514. "elevator": "๐Ÿ›—",
  515. "elf": "๐Ÿง",
  516. "elf_man": "๐Ÿงโ€โ™‚๏ธ",
  517. "elf_woman": "๐Ÿงโ€โ™€๏ธ",
  518. "email": "๐Ÿ“ง",
  519. "end": "๐Ÿ”š",
  520. "england": "๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ",
  521. "envelope": "โœ‰๏ธ",
  522. "envelope_with_arrow": "๐Ÿ“ฉ",
  523. "equatorial_guinea": "๐Ÿ‡ฌ๐Ÿ‡ถ",
  524. "eritrea": "๐Ÿ‡ช๐Ÿ‡ท",
  525. "es": "๐Ÿ‡ช๐Ÿ‡ธ",
  526. "estonia": "๐Ÿ‡ช๐Ÿ‡ช",
  527. "ethiopia": "๐Ÿ‡ช๐Ÿ‡น",
  528. "eu": "๐Ÿ‡ช๐Ÿ‡บ",
  529. "euro": "๐Ÿ’ถ",
  530. "european_castle": "๐Ÿฐ",
  531. "european_post_office": "๐Ÿค",
  532. "european_union": "๐Ÿ‡ช๐Ÿ‡บ",
  533. "evergreen_tree": "๐ŸŒฒ",
  534. "exclamation": "โ—",
  535. "exploding_head": "๐Ÿคฏ",
  536. "expressionless": "๐Ÿ˜‘",
  537. "eye": "๐Ÿ‘๏ธ",
  538. "eye_speech_bubble": "๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ",
  539. "eyeglasses": "๐Ÿ‘“",
  540. "eyes": "๐Ÿ‘€",
  541. "face_exhaling": "๐Ÿ˜ฎโ€๐Ÿ’จ",
  542. "face_in_clouds": "๐Ÿ˜ถโ€๐ŸŒซ๏ธ",
  543. "face_with_head_bandage": "๐Ÿค•",
  544. "face_with_spiral_eyes": "๐Ÿ˜ตโ€๐Ÿ’ซ",
  545. "face_with_thermometer": "๐Ÿค’",
  546. "facepalm": "๐Ÿคฆ",
  547. "facepunch": "๐Ÿ‘Š",
  548. "factory": "๐Ÿญ",
  549. "factory_worker": "๐Ÿง‘โ€๐Ÿญ",
  550. "fairy": "๐Ÿงš",
  551. "fairy_man": "๐Ÿงšโ€โ™‚๏ธ",
  552. "fairy_woman": "๐Ÿงšโ€โ™€๏ธ",
  553. "falafel": "๐Ÿง†",
  554. "falkland_islands": "๐Ÿ‡ซ๐Ÿ‡ฐ",
  555. "fallen_leaf": "๐Ÿ‚",
  556. "family": "๐Ÿ‘ช",
  557. "family_man_boy": "๐Ÿ‘จโ€๐Ÿ‘ฆ",
  558. "family_man_boy_boy": "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
  559. "family_man_girl": "๐Ÿ‘จโ€๐Ÿ‘ง",
  560. "family_man_girl_boy": "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
  561. "family_man_girl_girl": "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง",
  562. "family_man_man_boy": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ",
  563. "family_man_man_boy_boy": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
  564. "family_man_man_girl": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง",
  565. "family_man_man_girl_boy": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
  566. "family_man_man_girl_girl": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง",
  567. "family_man_woman_boy": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ",
  568. "family_man_woman_boy_boy": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
  569. "family_man_woman_girl": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง",
  570. "family_man_woman_girl_boy": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
  571. "family_man_woman_girl_girl": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",
  572. "family_woman_boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฆ",
  573. "family_woman_boy_boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
  574. "family_woman_girl": "๐Ÿ‘ฉโ€๐Ÿ‘ง",
  575. "family_woman_girl_boy": "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
  576. "family_woman_girl_girl": "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",
  577. "family_woman_woman_boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ",
  578. "family_woman_woman_boy_boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
  579. "family_woman_woman_girl": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง",
  580. "family_woman_woman_girl_boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
  581. "family_woman_woman_girl_girl": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",
  582. "farmer": "๐Ÿง‘โ€๐ŸŒพ",
  583. "faroe_islands": "๐Ÿ‡ซ๐Ÿ‡ด",
  584. "fast_forward": "โฉ",
  585. "fax": "๐Ÿ“ ",
  586. "fearful": "๐Ÿ˜จ",
  587. "feather": "๐Ÿชถ",
  588. "feet": "๐Ÿพ",
  589. "female_detective": "๐Ÿ•ต๏ธโ€โ™€๏ธ",
  590. "female_sign": "โ™€๏ธ",
  591. "ferris_wheel": "๐ŸŽก",
  592. "ferry": "โ›ด๏ธ",
  593. "field_hockey": "๐Ÿ‘",
  594. "fiji": "๐Ÿ‡ซ๐Ÿ‡ฏ",
  595. "file_cabinet": "๐Ÿ—„๏ธ",
  596. "file_folder": "๐Ÿ“",
  597. "film_projector": "๐Ÿ“ฝ๏ธ",
  598. "film_strip": "๐ŸŽž๏ธ",
  599. "finland": "๐Ÿ‡ซ๐Ÿ‡ฎ",
  600. "fire": "๐Ÿ”ฅ",
  601. "fire_engine": "๐Ÿš’",
  602. "fire_extinguisher": "๐Ÿงฏ",
  603. "firecracker": "๐Ÿงจ",
  604. "firefighter": "๐Ÿง‘โ€๐Ÿš’",
  605. "fireworks": "๐ŸŽ†",
  606. "first_quarter_moon": "๐ŸŒ“",
  607. "first_quarter_moon_with_face": "๐ŸŒ›",
  608. "fish": "๐ŸŸ",
  609. "fish_cake": "๐Ÿฅ",
  610. "fishing_pole_and_fish": "๐ŸŽฃ",
  611. "fist": "โœŠ",
  612. "fist_left": "๐Ÿค›",
  613. "fist_oncoming": "๐Ÿ‘Š",
  614. "fist_raised": "โœŠ",
  615. "fist_right": "๐Ÿคœ",
  616. "five": "5๏ธโƒฃ",
  617. "flags": "๐ŸŽ",
  618. "flamingo": "๐Ÿฆฉ",
  619. "flashlight": "๐Ÿ”ฆ",
  620. "flat_shoe": "๐Ÿฅฟ",
  621. "flatbread": "๐Ÿซ“",
  622. "fleur_de_lis": "โšœ๏ธ",
  623. "flight_arrival": "๐Ÿ›ฌ",
  624. "flight_departure": "๐Ÿ›ซ",
  625. "flipper": "๐Ÿฌ",
  626. "floppy_disk": "๐Ÿ’พ",
  627. "flower_playing_cards": "๐ŸŽด",
  628. "flushed": "๐Ÿ˜ณ",
  629. "fly": "๐Ÿชฐ",
  630. "flying_disc": "๐Ÿฅ",
  631. "flying_saucer": "๐Ÿ›ธ",
  632. "fog": "๐ŸŒซ๏ธ",
  633. "foggy": "๐ŸŒ",
  634. "fondue": "๐Ÿซ•",
  635. "foot": "๐Ÿฆถ",
  636. "football": "๐Ÿˆ",
  637. "footprints": "๐Ÿ‘ฃ",
  638. "fork_and_knife": "๐Ÿด",
  639. "fortune_cookie": "๐Ÿฅ ",
  640. "fountain": "โ›ฒ",
  641. "fountain_pen": "๐Ÿ–‹๏ธ",
  642. "four": "4๏ธโƒฃ",
  643. "four_leaf_clover": "๐Ÿ€",
  644. "fox_face": "๐ŸฆŠ",
  645. "fr": "๐Ÿ‡ซ๐Ÿ‡ท",
  646. "framed_picture": "๐Ÿ–ผ๏ธ",
  647. "free": "๐Ÿ†“",
  648. "french_guiana": "๐Ÿ‡ฌ๐Ÿ‡ซ",
  649. "french_polynesia": "๐Ÿ‡ต๐Ÿ‡ซ",
  650. "french_southern_territories": "๐Ÿ‡น๐Ÿ‡ซ",
  651. "fried_egg": "๐Ÿณ",
  652. "fried_shrimp": "๐Ÿค",
  653. "fries": "๐ŸŸ",
  654. "frog": "๐Ÿธ",
  655. "frowning": "๐Ÿ˜ฆ",
  656. "frowning_face": "โ˜น๏ธ",
  657. "frowning_man": "๐Ÿ™โ€โ™‚๏ธ",
  658. "frowning_person": "๐Ÿ™",
  659. "frowning_woman": "๐Ÿ™โ€โ™€๏ธ",
  660. "fu": "๐Ÿ–•",
  661. "fuelpump": "โ›ฝ",
  662. "full_moon": "๐ŸŒ•",
  663. "full_moon_with_face": "๐ŸŒ",
  664. "funeral_urn": "โšฑ๏ธ",
  665. "gabon": "๐Ÿ‡ฌ๐Ÿ‡ฆ",
  666. "gambia": "๐Ÿ‡ฌ๐Ÿ‡ฒ",
  667. "game_die": "๐ŸŽฒ",
  668. "garlic": "๐Ÿง„",
  669. "gb": "๐Ÿ‡ฌ๐Ÿ‡ง",
  670. "gear": "โš™๏ธ",
  671. "gem": "๐Ÿ’Ž",
  672. "gemini": "โ™Š",
  673. "genie": "๐Ÿงž",
  674. "genie_man": "๐Ÿงžโ€โ™‚๏ธ",
  675. "genie_woman": "๐Ÿงžโ€โ™€๏ธ",
  676. "georgia": "๐Ÿ‡ฌ๐Ÿ‡ช",
  677. "ghana": "๐Ÿ‡ฌ๐Ÿ‡ญ",
  678. "ghost": "๐Ÿ‘ป",
  679. "gibraltar": "๐Ÿ‡ฌ๐Ÿ‡ฎ",
  680. "gift": "๐ŸŽ",
  681. "gift_heart": "๐Ÿ’",
  682. "giraffe": "๐Ÿฆ’",
  683. "girl": "๐Ÿ‘ง",
  684. "globe_with_meridians": "๐ŸŒ",
  685. "gloves": "๐Ÿงค",
  686. "goal_net": "๐Ÿฅ…",
  687. "goat": "๐Ÿ",
  688. "goggles": "๐Ÿฅฝ",
  689. "golf": "โ›ณ",
  690. "golfing": "๐ŸŒ๏ธ",
  691. "golfing_man": "๐ŸŒ๏ธโ€โ™‚๏ธ",
  692. "golfing_woman": "๐ŸŒ๏ธโ€โ™€๏ธ",
  693. "gorilla": "๐Ÿฆ",
  694. "grapes": "๐Ÿ‡",
  695. "greece": "๐Ÿ‡ฌ๐Ÿ‡ท",
  696. "green_apple": "๐Ÿ",
  697. "green_book": "๐Ÿ“—",
  698. "green_circle": "๐ŸŸข",
  699. "green_heart": "๐Ÿ’š",
  700. "green_salad": "๐Ÿฅ—",
  701. "green_square": "๐ŸŸฉ",
  702. "greenland": "๐Ÿ‡ฌ๐Ÿ‡ฑ",
  703. "grenada": "๐Ÿ‡ฌ๐Ÿ‡ฉ",
  704. "grey_exclamation": "โ•",
  705. "grey_question": "โ”",
  706. "grimacing": "๐Ÿ˜ฌ",
  707. "grin": "๐Ÿ˜",
  708. "grinning": "๐Ÿ˜€",
  709. "guadeloupe": "๐Ÿ‡ฌ๐Ÿ‡ต",
  710. "guam": "๐Ÿ‡ฌ๐Ÿ‡บ",
  711. "guard": "๐Ÿ’‚",
  712. "guardsman": "๐Ÿ’‚โ€โ™‚๏ธ",
  713. "guardswoman": "๐Ÿ’‚โ€โ™€๏ธ",
  714. "guatemala": "๐Ÿ‡ฌ๐Ÿ‡น",
  715. "guernsey": "๐Ÿ‡ฌ๐Ÿ‡ฌ",
  716. "guide_dog": "๐Ÿฆฎ",
  717. "guinea": "๐Ÿ‡ฌ๐Ÿ‡ณ",
  718. "guinea_bissau": "๐Ÿ‡ฌ๐Ÿ‡ผ",
  719. "guitar": "๐ŸŽธ",
  720. "gun": "๐Ÿ”ซ",
  721. "guyana": "๐Ÿ‡ฌ๐Ÿ‡พ",
  722. "haircut": "๐Ÿ’‡",
  723. "haircut_man": "๐Ÿ’‡โ€โ™‚๏ธ",
  724. "haircut_woman": "๐Ÿ’‡โ€โ™€๏ธ",
  725. "haiti": "๐Ÿ‡ญ๐Ÿ‡น",
  726. "hamburger": "๐Ÿ”",
  727. "hammer": "๐Ÿ”จ",
  728. "hammer_and_pick": "โš’๏ธ",
  729. "hammer_and_wrench": "๐Ÿ› ๏ธ",
  730. "hamster": "๐Ÿน",
  731. "hand": "โœ‹",
  732. "hand_over_mouth": "๐Ÿคญ",
  733. "handbag": "๐Ÿ‘œ",
  734. "handball_person": "๐Ÿคพ",
  735. "handshake": "๐Ÿค",
  736. "hankey": "๐Ÿ’ฉ",
  737. "hash": "#๏ธโƒฃ",
  738. "hatched_chick": "๐Ÿฅ",
  739. "hatching_chick": "๐Ÿฃ",
  740. "headphones": "๐ŸŽง",
  741. "headstone": "๐Ÿชฆ",
  742. "health_worker": "๐Ÿง‘โ€โš•๏ธ",
  743. "hear_no_evil": "๐Ÿ™‰",
  744. "heard_mcdonald_islands": "๐Ÿ‡ญ๐Ÿ‡ฒ",
  745. "heart": "โค๏ธ",
  746. "heart_decoration": "๐Ÿ’Ÿ",
  747. "heart_eyes": "๐Ÿ˜",
  748. "heart_eyes_cat": "๐Ÿ˜ป",
  749. "heart_on_fire": "โค๏ธโ€๐Ÿ”ฅ",
  750. "heartbeat": "๐Ÿ’“",
  751. "heartpulse": "๐Ÿ’—",
  752. "hearts": "โ™ฅ๏ธ",
  753. "heavy_check_mark": "โœ”๏ธ",
  754. "heavy_division_sign": "โž—",
  755. "heavy_dollar_sign": "๐Ÿ’ฒ",
  756. "heavy_exclamation_mark": "โ—",
  757. "heavy_heart_exclamation": "โฃ๏ธ",
  758. "heavy_minus_sign": "โž–",
  759. "heavy_multiplication_x": "โœ–๏ธ",
  760. "heavy_plus_sign": "โž•",
  761. "hedgehog": "๐Ÿฆ”",
  762. "helicopter": "๐Ÿš",
  763. "herb": "๐ŸŒฟ",
  764. "hibiscus": "๐ŸŒบ",
  765. "high_brightness": "๐Ÿ”†",
  766. "high_heel": "๐Ÿ‘ ",
  767. "hiking_boot": "๐Ÿฅพ",
  768. "hindu_temple": "๐Ÿ›•",
  769. "hippopotamus": "๐Ÿฆ›",
  770. "hocho": "๐Ÿ”ช",
  771. "hole": "๐Ÿ•ณ๏ธ",
  772. "honduras": "๐Ÿ‡ญ๐Ÿ‡ณ",
  773. "honey_pot": "๐Ÿฏ",
  774. "honeybee": "๐Ÿ",
  775. "hong_kong": "๐Ÿ‡ญ๐Ÿ‡ฐ",
  776. "hook": "๐Ÿช",
  777. "horse": "๐Ÿด",
  778. "horse_racing": "๐Ÿ‡",
  779. "hospital": "๐Ÿฅ",
  780. "hot_face": "๐Ÿฅต",
  781. "hot_pepper": "๐ŸŒถ๏ธ",
  782. "hotdog": "๐ŸŒญ",
  783. "hotel": "๐Ÿจ",
  784. "hotsprings": "โ™จ๏ธ",
  785. "hourglass": "โŒ›",
  786. "hourglass_flowing_sand": "โณ",
  787. "house": "๐Ÿ ",
  788. "house_with_garden": "๐Ÿก",
  789. "houses": "๐Ÿ˜๏ธ",
  790. "hugs": "๐Ÿค—",
  791. "hungary": "๐Ÿ‡ญ๐Ÿ‡บ",
  792. "hushed": "๐Ÿ˜ฏ",
  793. "hut": "๐Ÿ›–",
  794. "ice_cream": "๐Ÿจ",
  795. "ice_cube": "๐ŸงŠ",
  796. "ice_hockey": "๐Ÿ’",
  797. "ice_skate": "โ›ธ๏ธ",
  798. "icecream": "๐Ÿฆ",
  799. "iceland": "๐Ÿ‡ฎ๐Ÿ‡ธ",
  800. "id": "๐Ÿ†”",
  801. "ideograph_advantage": "๐Ÿ‰",
  802. "imp": "๐Ÿ‘ฟ",
  803. "inbox_tray": "๐Ÿ“ฅ",
  804. "incoming_envelope": "๐Ÿ“จ",
  805. "india": "๐Ÿ‡ฎ๐Ÿ‡ณ",
  806. "indonesia": "๐Ÿ‡ฎ๐Ÿ‡ฉ",
  807. "infinity": "โ™พ๏ธ",
  808. "information_desk_person": "๐Ÿ’",
  809. "information_source": "โ„น๏ธ",
  810. "innocent": "๐Ÿ˜‡",
  811. "interrobang": "โ‰๏ธ",
  812. "iphone": "๐Ÿ“ฑ",
  813. "iran": "๐Ÿ‡ฎ๐Ÿ‡ท",
  814. "iraq": "๐Ÿ‡ฎ๐Ÿ‡ถ",
  815. "ireland": "๐Ÿ‡ฎ๐Ÿ‡ช",
  816. "isle_of_man": "๐Ÿ‡ฎ๐Ÿ‡ฒ",
  817. "israel": "๐Ÿ‡ฎ๐Ÿ‡ฑ",
  818. "it": "๐Ÿ‡ฎ๐Ÿ‡น",
  819. "izakaya_lantern": "๐Ÿฎ",
  820. "jack_o_lantern": "๐ŸŽƒ",
  821. "jamaica": "๐Ÿ‡ฏ๐Ÿ‡ฒ",
  822. "japan": "๐Ÿ—พ",
  823. "japanese_castle": "๐Ÿฏ",
  824. "japanese_goblin": "๐Ÿ‘บ",
  825. "japanese_ogre": "๐Ÿ‘น",
  826. "jeans": "๐Ÿ‘–",
  827. "jersey": "๐Ÿ‡ฏ๐Ÿ‡ช",
  828. "jigsaw": "๐Ÿงฉ",
  829. "jordan": "๐Ÿ‡ฏ๐Ÿ‡ด",
  830. "joy": "๐Ÿ˜‚",
  831. "joy_cat": "๐Ÿ˜น",
  832. "joystick": "๐Ÿ•น๏ธ",
  833. "jp": "๐Ÿ‡ฏ๐Ÿ‡ต",
  834. "judge": "๐Ÿง‘โ€โš–๏ธ",
  835. "juggling_person": "๐Ÿคน",
  836. "kaaba": "๐Ÿ•‹",
  837. "kangaroo": "๐Ÿฆ˜",
  838. "kazakhstan": "๐Ÿ‡ฐ๐Ÿ‡ฟ",
  839. "kenya": "๐Ÿ‡ฐ๐Ÿ‡ช",
  840. "key": "๐Ÿ”‘",
  841. "keyboard": "โŒจ๏ธ",
  842. "keycap_ten": "๐Ÿ”Ÿ",
  843. "kick_scooter": "๐Ÿ›ด",
  844. "kimono": "๐Ÿ‘˜",
  845. "kiribati": "๐Ÿ‡ฐ๐Ÿ‡ฎ",
  846. "kiss": "๐Ÿ’‹",
  847. "kissing": "๐Ÿ˜—",
  848. "kissing_cat": "๐Ÿ˜ฝ",
  849. "kissing_closed_eyes": "๐Ÿ˜š",
  850. "kissing_heart": "๐Ÿ˜˜",
  851. "kissing_smiling_eyes": "๐Ÿ˜™",
  852. "kite": "๐Ÿช",
  853. "kiwi_fruit": "๐Ÿฅ",
  854. "kneeling_man": "๐ŸงŽโ€โ™‚๏ธ",
  855. "kneeling_person": "๐ŸงŽ",
  856. "kneeling_woman": "๐ŸงŽโ€โ™€๏ธ",
  857. "knife": "๐Ÿ”ช",
  858. "knot": "๐Ÿชข",
  859. "koala": "๐Ÿจ",
  860. "koko": "๐Ÿˆ",
  861. "kosovo": "๐Ÿ‡ฝ๐Ÿ‡ฐ",
  862. "kr": "๐Ÿ‡ฐ๐Ÿ‡ท",
  863. "kuwait": "๐Ÿ‡ฐ๐Ÿ‡ผ",
  864. "kyrgyzstan": "๐Ÿ‡ฐ๐Ÿ‡ฌ",
  865. "lab_coat": "๐Ÿฅผ",
  866. "label": "๐Ÿท๏ธ",
  867. "lacrosse": "๐Ÿฅ",
  868. "ladder": "๐Ÿชœ",
  869. "lady_beetle": "๐Ÿž",
  870. "lantern": "๐Ÿฎ",
  871. "laos": "๐Ÿ‡ฑ๐Ÿ‡ฆ",
  872. "large_blue_circle": "๐Ÿ”ต",
  873. "large_blue_diamond": "๐Ÿ”ท",
  874. "large_orange_diamond": "๐Ÿ”ถ",
  875. "last_quarter_moon": "๐ŸŒ—",
  876. "last_quarter_moon_with_face": "๐ŸŒœ",
  877. "latin_cross": "โœ๏ธ",
  878. "latvia": "๐Ÿ‡ฑ๐Ÿ‡ป",
  879. "laughing": "๐Ÿ˜†",
  880. "leafy_green": "๐Ÿฅฌ",
  881. "leaves": "๐Ÿƒ",
  882. "lebanon": "๐Ÿ‡ฑ๐Ÿ‡ง",
  883. "ledger": "๐Ÿ“’",
  884. "left_luggage": "๐Ÿ›…",
  885. "left_right_arrow": "โ†”๏ธ",
  886. "left_speech_bubble": "๐Ÿ—จ๏ธ",
  887. "leftwards_arrow_with_hook": "โ†ฉ๏ธ",
  888. "leg": "๐Ÿฆต",
  889. "lemon": "๐Ÿ‹",
  890. "leo": "โ™Œ",
  891. "leopard": "๐Ÿ†",
  892. "lesotho": "๐Ÿ‡ฑ๐Ÿ‡ธ",
  893. "level_slider": "๐ŸŽš๏ธ",
  894. "liberia": "๐Ÿ‡ฑ๐Ÿ‡ท",
  895. "libra": "โ™Ž",
  896. "libya": "๐Ÿ‡ฑ๐Ÿ‡พ",
  897. "liechtenstein": "๐Ÿ‡ฑ๐Ÿ‡ฎ",
  898. "light_rail": "๐Ÿšˆ",
  899. "link": "๐Ÿ”—",
  900. "lion": "๐Ÿฆ",
  901. "lips": "๐Ÿ‘„",
  902. "lipstick": "๐Ÿ’„",
  903. "lithuania": "๐Ÿ‡ฑ๐Ÿ‡น",
  904. "lizard": "๐ŸฆŽ",
  905. "llama": "๐Ÿฆ™",
  906. "lobster": "๐Ÿฆž",
  907. "lock": "๐Ÿ”’",
  908. "lock_with_ink_pen": "๐Ÿ”",
  909. "lollipop": "๐Ÿญ",
  910. "long_drum": "๐Ÿช˜",
  911. "loop": "โžฟ",
  912. "lotion_bottle": "๐Ÿงด",
  913. "lotus_position": "๐Ÿง˜",
  914. "lotus_position_man": "๐Ÿง˜โ€โ™‚๏ธ",
  915. "lotus_position_woman": "๐Ÿง˜โ€โ™€๏ธ",
  916. "loud_sound": "๐Ÿ”Š",
  917. "loudspeaker": "๐Ÿ“ข",
  918. "love_hotel": "๐Ÿฉ",
  919. "love_letter": "๐Ÿ’Œ",
  920. "love_you_gesture": "๐ŸคŸ",
  921. "low_brightness": "๐Ÿ”…",
  922. "luggage": "๐Ÿงณ",
  923. "lungs": "๐Ÿซ",
  924. "luxembourg": "๐Ÿ‡ฑ๐Ÿ‡บ",
  925. "lying_face": "๐Ÿคฅ",
  926. "m": "โ“‚๏ธ",
  927. "macau": "๐Ÿ‡ฒ๐Ÿ‡ด",
  928. "macedonia": "๐Ÿ‡ฒ๐Ÿ‡ฐ",
  929. "madagascar": "๐Ÿ‡ฒ๐Ÿ‡ฌ",
  930. "mag": "๐Ÿ”",
  931. "mag_right": "๐Ÿ”Ž",
  932. "mage": "๐Ÿง™",
  933. "mage_man": "๐Ÿง™โ€โ™‚๏ธ",
  934. "mage_woman": "๐Ÿง™โ€โ™€๏ธ",
  935. "magic_wand": "๐Ÿช„",
  936. "magnet": "๐Ÿงฒ",
  937. "mahjong": "๐Ÿ€„",
  938. "mailbox": "๐Ÿ“ซ",
  939. "mailbox_closed": "๐Ÿ“ช",
  940. "mailbox_with_mail": "๐Ÿ“ฌ",
  941. "mailbox_with_no_mail": "๐Ÿ“ญ",
  942. "malawi": "๐Ÿ‡ฒ๐Ÿ‡ผ",
  943. "malaysia": "๐Ÿ‡ฒ๐Ÿ‡พ",
  944. "maldives": "๐Ÿ‡ฒ๐Ÿ‡ป",
  945. "male_detective": "๐Ÿ•ต๏ธโ€โ™‚๏ธ",
  946. "male_sign": "โ™‚๏ธ",
  947. "mali": "๐Ÿ‡ฒ๐Ÿ‡ฑ",
  948. "malta": "๐Ÿ‡ฒ๐Ÿ‡น",
  949. "mammoth": "๐Ÿฆฃ",
  950. "man": "๐Ÿ‘จ",
  951. "man_artist": "๐Ÿ‘จโ€๐ŸŽจ",
  952. "man_astronaut": "๐Ÿ‘จโ€๐Ÿš€",
  953. "man_beard": "๐Ÿง”โ€โ™‚๏ธ",
  954. "man_cartwheeling": "๐Ÿคธโ€โ™‚๏ธ",
  955. "man_cook": "๐Ÿ‘จโ€๐Ÿณ",
  956. "man_dancing": "๐Ÿ•บ",
  957. "man_facepalming": "๐Ÿคฆโ€โ™‚๏ธ",
  958. "man_factory_worker": "๐Ÿ‘จโ€๐Ÿญ",
  959. "man_farmer": "๐Ÿ‘จโ€๐ŸŒพ",
  960. "man_feeding_baby": "๐Ÿ‘จโ€๐Ÿผ",
  961. "man_firefighter": "๐Ÿ‘จโ€๐Ÿš’",
  962. "man_health_worker": "๐Ÿ‘จโ€โš•๏ธ",
  963. "man_in_manual_wheelchair": "๐Ÿ‘จโ€๐Ÿฆฝ",
  964. "man_in_motorized_wheelchair": "๐Ÿ‘จโ€๐Ÿฆผ",
  965. "man_in_tuxedo": "๐Ÿคตโ€โ™‚๏ธ",
  966. "man_judge": "๐Ÿ‘จโ€โš–๏ธ",
  967. "man_juggling": "๐Ÿคนโ€โ™‚๏ธ",
  968. "man_mechanic": "๐Ÿ‘จโ€๐Ÿ”ง",
  969. "man_office_worker": "๐Ÿ‘จโ€๐Ÿ’ผ",
  970. "man_pilot": "๐Ÿ‘จโ€โœˆ๏ธ",
  971. "man_playing_handball": "๐Ÿคพโ€โ™‚๏ธ",
  972. "man_playing_water_polo": "๐Ÿคฝโ€โ™‚๏ธ",
  973. "man_scientist": "๐Ÿ‘จโ€๐Ÿ”ฌ",
  974. "man_shrugging": "๐Ÿคทโ€โ™‚๏ธ",
  975. "man_singer": "๐Ÿ‘จโ€๐ŸŽค",
  976. "man_student": "๐Ÿ‘จโ€๐ŸŽ“",
  977. "man_teacher": "๐Ÿ‘จโ€๐Ÿซ",
  978. "man_technologist": "๐Ÿ‘จโ€๐Ÿ’ป",
  979. "man_with_gua_pi_mao": "๐Ÿ‘ฒ",
  980. "man_with_probing_cane": "๐Ÿ‘จโ€๐Ÿฆฏ",
  981. "man_with_turban": "๐Ÿ‘ณโ€โ™‚๏ธ",
  982. "man_with_veil": "๐Ÿ‘ฐโ€โ™‚๏ธ",
  983. "mandarin": "๐ŸŠ",
  984. "mango": "๐Ÿฅญ",
  985. "mans_shoe": "๐Ÿ‘ž",
  986. "mantelpiece_clock": "๐Ÿ•ฐ๏ธ",
  987. "manual_wheelchair": "๐Ÿฆฝ",
  988. "maple_leaf": "๐Ÿ",
  989. "marshall_islands": "๐Ÿ‡ฒ๐Ÿ‡ญ",
  990. "martial_arts_uniform": "๐Ÿฅ‹",
  991. "martinique": "๐Ÿ‡ฒ๐Ÿ‡ถ",
  992. "mask": "๐Ÿ˜ท",
  993. "massage": "๐Ÿ’†",
  994. "massage_man": "๐Ÿ’†โ€โ™‚๏ธ",
  995. "massage_woman": "๐Ÿ’†โ€โ™€๏ธ",
  996. "mate": "๐Ÿง‰",
  997. "mauritania": "๐Ÿ‡ฒ๐Ÿ‡ท",
  998. "mauritius": "๐Ÿ‡ฒ๐Ÿ‡บ",
  999. "mayotte": "๐Ÿ‡พ๐Ÿ‡น",
  1000. "meat_on_bone": "๐Ÿ–",
  1001. "mechanic": "๐Ÿง‘โ€๐Ÿ”ง",
  1002. "mechanical_arm": "๐Ÿฆพ",
  1003. "mechanical_leg": "๐Ÿฆฟ",
  1004. "medal_military": "๐ŸŽ–๏ธ",
  1005. "medal_sports": "๐Ÿ…",
  1006. "medical_symbol": "โš•๏ธ",
  1007. "mega": "๐Ÿ“ฃ",
  1008. "melon": "๐Ÿˆ",
  1009. "memo": "๐Ÿ“",
  1010. "men_wrestling": "๐Ÿคผโ€โ™‚๏ธ",
  1011. "mending_heart": "โค๏ธโ€๐Ÿฉน",
  1012. "menorah": "๐Ÿ•Ž",
  1013. "mens": "๐Ÿšน",
  1014. "mermaid": "๐Ÿงœโ€โ™€๏ธ",
  1015. "merman": "๐Ÿงœโ€โ™‚๏ธ",
  1016. "merperson": "๐Ÿงœ",
  1017. "metal": "๐Ÿค˜",
  1018. "metro": "๐Ÿš‡",
  1019. "mexico": "๐Ÿ‡ฒ๐Ÿ‡ฝ",
  1020. "microbe": "๐Ÿฆ ",
  1021. "micronesia": "๐Ÿ‡ซ๐Ÿ‡ฒ",
  1022. "microphone": "๐ŸŽค",
  1023. "microscope": "๐Ÿ”ฌ",
  1024. "middle_finger": "๐Ÿ–•",
  1025. "military_helmet": "๐Ÿช–",
  1026. "milk_glass": "๐Ÿฅ›",
  1027. "milky_way": "๐ŸŒŒ",
  1028. "minibus": "๐Ÿš",
  1029. "minidisc": "๐Ÿ’ฝ",
  1030. "mirror": "๐Ÿชž",
  1031. "mobile_phone_off": "๐Ÿ“ด",
  1032. "moldova": "๐Ÿ‡ฒ๐Ÿ‡ฉ",
  1033. "monaco": "๐Ÿ‡ฒ๐Ÿ‡จ",
  1034. "money_mouth_face": "๐Ÿค‘",
  1035. "money_with_wings": "๐Ÿ’ธ",
  1036. "moneybag": "๐Ÿ’ฐ",
  1037. "mongolia": "๐Ÿ‡ฒ๐Ÿ‡ณ",
  1038. "monkey": "๐Ÿ’",
  1039. "monkey_face": "๐Ÿต",
  1040. "monocle_face": "๐Ÿง",
  1041. "monorail": "๐Ÿš",
  1042. "montenegro": "๐Ÿ‡ฒ๐Ÿ‡ช",
  1043. "montserrat": "๐Ÿ‡ฒ๐Ÿ‡ธ",
  1044. "moon": "๐ŸŒ”",
  1045. "moon_cake": "๐Ÿฅฎ",
  1046. "morocco": "๐Ÿ‡ฒ๐Ÿ‡ฆ",
  1047. "mortar_board": "๐ŸŽ“",
  1048. "mosque": "๐Ÿ•Œ",
  1049. "mosquito": "๐ŸฆŸ",
  1050. "motor_boat": "๐Ÿ›ฅ๏ธ",
  1051. "motor_scooter": "๐Ÿ›ต",
  1052. "motorcycle": "๐Ÿ๏ธ",
  1053. "motorized_wheelchair": "๐Ÿฆผ",
  1054. "motorway": "๐Ÿ›ฃ๏ธ",
  1055. "mount_fuji": "๐Ÿ—ป",
  1056. "mountain": "โ›ฐ๏ธ",
  1057. "mountain_bicyclist": "๐Ÿšต",
  1058. "mountain_biking_man": "๐Ÿšตโ€โ™‚๏ธ",
  1059. "mountain_biking_woman": "๐Ÿšตโ€โ™€๏ธ",
  1060. "mountain_cableway": "๐Ÿš ",
  1061. "mountain_railway": "๐Ÿšž",
  1062. "mountain_snow": "๐Ÿ”๏ธ",
  1063. "mouse": "๐Ÿญ",
  1064. "mouse2": "๐Ÿ",
  1065. "mouse_trap": "๐Ÿชค",
  1066. "movie_camera": "๐ŸŽฅ",
  1067. "moyai": "๐Ÿ—ฟ",
  1068. "mozambique": "๐Ÿ‡ฒ๐Ÿ‡ฟ",
  1069. "mrs_claus": "๐Ÿคถ",
  1070. "muscle": "๐Ÿ’ช",
  1071. "mushroom": "๐Ÿ„",
  1072. "musical_keyboard": "๐ŸŽน",
  1073. "musical_note": "๐ŸŽต",
  1074. "musical_score": "๐ŸŽผ",
  1075. "mute": "๐Ÿ”‡",
  1076. "mx_claus": "๐Ÿง‘โ€๐ŸŽ„",
  1077. "myanmar": "๐Ÿ‡ฒ๐Ÿ‡ฒ",
  1078. "nail_care": "๐Ÿ’…",
  1079. "name_badge": "๐Ÿ“›",
  1080. "namibia": "๐Ÿ‡ณ๐Ÿ‡ฆ",
  1081. "national_park": "๐Ÿž๏ธ",
  1082. "nauru": "๐Ÿ‡ณ๐Ÿ‡ท",
  1083. "nauseated_face": "๐Ÿคข",
  1084. "nazar_amulet": "๐Ÿงฟ",
  1085. "necktie": "๐Ÿ‘”",
  1086. "negative_squared_cross_mark": "โŽ",
  1087. "nepal": "๐Ÿ‡ณ๐Ÿ‡ต",
  1088. "nerd_face": "๐Ÿค“",
  1089. "nesting_dolls": "๐Ÿช†",
  1090. "netherlands": "๐Ÿ‡ณ๐Ÿ‡ฑ",
  1091. "neutral_face": "๐Ÿ˜",
  1092. "new": "๐Ÿ†•",
  1093. "new_caledonia": "๐Ÿ‡ณ๐Ÿ‡จ",
  1094. "new_moon": "๐ŸŒ‘",
  1095. "new_moon_with_face": "๐ŸŒš",
  1096. "new_zealand": "๐Ÿ‡ณ๐Ÿ‡ฟ",
  1097. "newspaper": "๐Ÿ“ฐ",
  1098. "newspaper_roll": "๐Ÿ—ž๏ธ",
  1099. "next_track_button": "โญ๏ธ",
  1100. "ng": "๐Ÿ†–",
  1101. "ng_man": "๐Ÿ™…โ€โ™‚๏ธ",
  1102. "ng_woman": "๐Ÿ™…โ€โ™€๏ธ",
  1103. "nicaragua": "๐Ÿ‡ณ๐Ÿ‡ฎ",
  1104. "niger": "๐Ÿ‡ณ๐Ÿ‡ช",
  1105. "nigeria": "๐Ÿ‡ณ๐Ÿ‡ฌ",
  1106. "night_with_stars": "๐ŸŒƒ",
  1107. "nine": "9๏ธโƒฃ",
  1108. "ninja": "๐Ÿฅท",
  1109. "niue": "๐Ÿ‡ณ๐Ÿ‡บ",
  1110. "no_bell": "๐Ÿ”•",
  1111. "no_bicycles": "๐Ÿšณ",
  1112. "no_entry": "โ›”",
  1113. "no_entry_sign": "๐Ÿšซ",
  1114. "no_good": "๐Ÿ™…",
  1115. "no_good_man": "๐Ÿ™…โ€โ™‚๏ธ",
  1116. "no_good_woman": "๐Ÿ™…โ€โ™€๏ธ",
  1117. "no_mobile_phones": "๐Ÿ“ต",
  1118. "no_mouth": "๐Ÿ˜ถ",
  1119. "no_pedestrians": "๐Ÿšท",
  1120. "no_smoking": "๐Ÿšญ",
  1121. "non-potable_water": "๐Ÿšฑ",
  1122. "norfolk_island": "๐Ÿ‡ณ๐Ÿ‡ซ",
  1123. "north_korea": "๐Ÿ‡ฐ๐Ÿ‡ต",
  1124. "northern_mariana_islands": "๐Ÿ‡ฒ๐Ÿ‡ต",
  1125. "norway": "๐Ÿ‡ณ๐Ÿ‡ด",
  1126. "nose": "๐Ÿ‘ƒ",
  1127. "notebook": "๐Ÿ““",
  1128. "notebook_with_decorative_cover": "๐Ÿ“”",
  1129. "notes": "๐ŸŽถ",
  1130. "nut_and_bolt": "๐Ÿ”ฉ",
  1131. "o": "โญ•",
  1132. "o2": "๐Ÿ…พ๏ธ",
  1133. "ocean": "๐ŸŒŠ",
  1134. "octopus": "๐Ÿ™",
  1135. "oden": "๐Ÿข",
  1136. "office": "๐Ÿข",
  1137. "office_worker": "๐Ÿง‘โ€๐Ÿ’ผ",
  1138. "oil_drum": "๐Ÿ›ข๏ธ",
  1139. "ok": "๐Ÿ†—",
  1140. "ok_hand": "๐Ÿ‘Œ",
  1141. "ok_man": "๐Ÿ™†โ€โ™‚๏ธ",
  1142. "ok_person": "๐Ÿ™†",
  1143. "ok_woman": "๐Ÿ™†โ€โ™€๏ธ",
  1144. "old_key": "๐Ÿ—๏ธ",
  1145. "older_adult": "๐Ÿง“",
  1146. "older_man": "๐Ÿ‘ด",
  1147. "older_woman": "๐Ÿ‘ต",
  1148. "olive": "๐Ÿซ’",
  1149. "om": "๐Ÿ•‰๏ธ",
  1150. "oman": "๐Ÿ‡ด๐Ÿ‡ฒ",
  1151. "on": "๐Ÿ”›",
  1152. "oncoming_automobile": "๐Ÿš˜",
  1153. "oncoming_bus": "๐Ÿš",
  1154. "oncoming_police_car": "๐Ÿš”",
  1155. "oncoming_taxi": "๐Ÿš–",
  1156. "one": "1๏ธโƒฃ",
  1157. "one_piece_swimsuit": "๐Ÿฉฑ",
  1158. "onion": "๐Ÿง…",
  1159. "open_book": "๐Ÿ“–",
  1160. "open_file_folder": "๐Ÿ“‚",
  1161. "open_hands": "๐Ÿ‘",
  1162. "open_mouth": "๐Ÿ˜ฎ",
  1163. "open_umbrella": "โ˜‚๏ธ",
  1164. "ophiuchus": "โ›Ž",
  1165. "orange": "๐ŸŠ",
  1166. "orange_book": "๐Ÿ“™",
  1167. "orange_circle": "๐ŸŸ ",
  1168. "orange_heart": "๐Ÿงก",
  1169. "orange_square": "๐ŸŸง",
  1170. "orangutan": "๐Ÿฆง",
  1171. "orthodox_cross": "โ˜ฆ๏ธ",
  1172. "otter": "๐Ÿฆฆ",
  1173. "outbox_tray": "๐Ÿ“ค",
  1174. "owl": "๐Ÿฆ‰",
  1175. "ox": "๐Ÿ‚",
  1176. "oyster": "๐Ÿฆช",
  1177. "package": "๐Ÿ“ฆ",
  1178. "page_facing_up": "๐Ÿ“„",
  1179. "page_with_curl": "๐Ÿ“ƒ",
  1180. "pager": "๐Ÿ“Ÿ",
  1181. "paintbrush": "๐Ÿ–Œ๏ธ",
  1182. "pakistan": "๐Ÿ‡ต๐Ÿ‡ฐ",
  1183. "palau": "๐Ÿ‡ต๐Ÿ‡ผ",
  1184. "palestinian_territories": "๐Ÿ‡ต๐Ÿ‡ธ",
  1185. "palm_tree": "๐ŸŒด",
  1186. "palms_up_together": "๐Ÿคฒ",
  1187. "panama": "๐Ÿ‡ต๐Ÿ‡ฆ",
  1188. "pancakes": "๐Ÿฅž",
  1189. "panda_face": "๐Ÿผ",
  1190. "paperclip": "๐Ÿ“Ž",
  1191. "paperclips": "๐Ÿ–‡๏ธ",
  1192. "papua_new_guinea": "๐Ÿ‡ต๐Ÿ‡ฌ",
  1193. "parachute": "๐Ÿช‚",
  1194. "paraguay": "๐Ÿ‡ต๐Ÿ‡พ",
  1195. "parasol_on_ground": "โ›ฑ๏ธ",
  1196. "parking": "๐Ÿ…ฟ๏ธ",
  1197. "parrot": "๐Ÿฆœ",
  1198. "part_alternation_mark": "ใ€ฝ๏ธ",
  1199. "partly_sunny": "โ›…",
  1200. "partying_face": "๐Ÿฅณ",
  1201. "passenger_ship": "๐Ÿ›ณ๏ธ",
  1202. "passport_control": "๐Ÿ›‚",
  1203. "pause_button": "โธ๏ธ",
  1204. "paw_prints": "๐Ÿพ",
  1205. "peace_symbol": "โ˜ฎ๏ธ",
  1206. "peach": "๐Ÿ‘",
  1207. "peacock": "๐Ÿฆš",
  1208. "peanuts": "๐Ÿฅœ",
  1209. "pear": "๐Ÿ",
  1210. "pen": "๐Ÿ–Š๏ธ",
  1211. "pencil": "๐Ÿ“",
  1212. "pencil2": "โœ๏ธ",
  1213. "penguin": "๐Ÿง",
  1214. "pensive": "๐Ÿ˜”",
  1215. "people_holding_hands": "๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘",
  1216. "people_hugging": "๐Ÿซ‚",
  1217. "performing_arts": "๐ŸŽญ",
  1218. "persevere": "๐Ÿ˜ฃ",
  1219. "person_bald": "๐Ÿง‘โ€๐Ÿฆฒ",
  1220. "person_curly_hair": "๐Ÿง‘โ€๐Ÿฆฑ",
  1221. "person_feeding_baby": "๐Ÿง‘โ€๐Ÿผ",
  1222. "person_fencing": "๐Ÿคบ",
  1223. "person_in_manual_wheelchair": "๐Ÿง‘โ€๐Ÿฆฝ",
  1224. "person_in_motorized_wheelchair": "๐Ÿง‘โ€๐Ÿฆผ",
  1225. "person_in_tuxedo": "๐Ÿคต",
  1226. "person_red_hair": "๐Ÿง‘โ€๐Ÿฆฐ",
  1227. "person_white_hair": "๐Ÿง‘โ€๐Ÿฆณ",
  1228. "person_with_probing_cane": "๐Ÿง‘โ€๐Ÿฆฏ",
  1229. "person_with_turban": "๐Ÿ‘ณ",
  1230. "person_with_veil": "๐Ÿ‘ฐ",
  1231. "peru": "๐Ÿ‡ต๐Ÿ‡ช",
  1232. "petri_dish": "๐Ÿงซ",
  1233. "philippines": "๐Ÿ‡ต๐Ÿ‡ญ",
  1234. "phone": "โ˜Ž๏ธ",
  1235. "pick": "โ›๏ธ",
  1236. "pickup_truck": "๐Ÿ›ป",
  1237. "pie": "๐Ÿฅง",
  1238. "pig": "๐Ÿท",
  1239. "pig2": "๐Ÿ–",
  1240. "pig_nose": "๐Ÿฝ",
  1241. "pill": "๐Ÿ’Š",
  1242. "pilot": "๐Ÿง‘โ€โœˆ๏ธ",
  1243. "pinata": "๐Ÿช…",
  1244. "pinched_fingers": "๐ŸคŒ",
  1245. "pinching_hand": "๐Ÿค",
  1246. "pineapple": "๐Ÿ",
  1247. "ping_pong": "๐Ÿ“",
  1248. "pirate_flag": "๐Ÿดโ€โ˜ ๏ธ",
  1249. "pisces": "โ™“",
  1250. "pitcairn_islands": "๐Ÿ‡ต๐Ÿ‡ณ",
  1251. "pizza": "๐Ÿ•",
  1252. "placard": "๐Ÿชง",
  1253. "place_of_worship": "๐Ÿ›",
  1254. "plate_with_cutlery": "๐Ÿฝ๏ธ",
  1255. "play_or_pause_button": "โฏ๏ธ",
  1256. "pleading_face": "๐Ÿฅบ",
  1257. "plunger": "๐Ÿช ",
  1258. "point_down": "๐Ÿ‘‡",
  1259. "point_left": "๐Ÿ‘ˆ",
  1260. "point_right": "๐Ÿ‘‰",
  1261. "point_up": "โ˜๏ธ",
  1262. "point_up_2": "๐Ÿ‘†",
  1263. "poland": "๐Ÿ‡ต๐Ÿ‡ฑ",
  1264. "polar_bear": "๐Ÿปโ€โ„๏ธ",
  1265. "police_car": "๐Ÿš“",
  1266. "police_officer": "๐Ÿ‘ฎ",
  1267. "policeman": "๐Ÿ‘ฎโ€โ™‚๏ธ",
  1268. "policewoman": "๐Ÿ‘ฎโ€โ™€๏ธ",
  1269. "poodle": "๐Ÿฉ",
  1270. "poop": "๐Ÿ’ฉ",
  1271. "popcorn": "๐Ÿฟ",
  1272. "portugal": "๐Ÿ‡ต๐Ÿ‡น",
  1273. "post_office": "๐Ÿฃ",
  1274. "postal_horn": "๐Ÿ“ฏ",
  1275. "postbox": "๐Ÿ“ฎ",
  1276. "potable_water": "๐Ÿšฐ",
  1277. "potato": "๐Ÿฅ”",
  1278. "potted_plant": "๐Ÿชด",
  1279. "pouch": "๐Ÿ‘",
  1280. "poultry_leg": "๐Ÿ—",
  1281. "pound": "๐Ÿ’ท",
  1282. "pout": "๐Ÿ˜ก",
  1283. "pouting_cat": "๐Ÿ˜พ",
  1284. "pouting_face": "๐Ÿ™Ž",
  1285. "pouting_man": "๐Ÿ™Žโ€โ™‚๏ธ",
  1286. "pouting_woman": "๐Ÿ™Žโ€โ™€๏ธ",
  1287. "pray": "๐Ÿ™",
  1288. "prayer_beads": "๐Ÿ“ฟ",
  1289. "pregnant_woman": "๐Ÿคฐ",
  1290. "pretzel": "๐Ÿฅจ",
  1291. "previous_track_button": "โฎ๏ธ",
  1292. "prince": "๐Ÿคด",
  1293. "princess": "๐Ÿ‘ธ",
  1294. "printer": "๐Ÿ–จ๏ธ",
  1295. "probing_cane": "๐Ÿฆฏ",
  1296. "puerto_rico": "๐Ÿ‡ต๐Ÿ‡ท",
  1297. "punch": "๐Ÿ‘Š",
  1298. "purple_circle": "๐ŸŸฃ",
  1299. "purple_heart": "๐Ÿ’œ",
  1300. "purple_square": "๐ŸŸช",
  1301. "purse": "๐Ÿ‘›",
  1302. "pushpin": "๐Ÿ“Œ",
  1303. "put_litter_in_its_place": "๐Ÿšฎ",
  1304. "qatar": "๐Ÿ‡ถ๐Ÿ‡ฆ",
  1305. "question": "โ“",
  1306. "rabbit": "๐Ÿฐ",
  1307. "rabbit2": "๐Ÿ‡",
  1308. "raccoon": "๐Ÿฆ",
  1309. "racehorse": "๐ŸŽ",
  1310. "racing_car": "๐ŸŽ๏ธ",
  1311. "radio": "๐Ÿ“ป",
  1312. "radio_button": "๐Ÿ”˜",
  1313. "radioactive": "โ˜ข๏ธ",
  1314. "rage": "๐Ÿ˜ก",
  1315. "railway_car": "๐Ÿšƒ",
  1316. "railway_track": "๐Ÿ›ค๏ธ",
  1317. "rainbow": "๐ŸŒˆ",
  1318. "rainbow_flag": "๐Ÿณ๏ธโ€๐ŸŒˆ",
  1319. "raised_back_of_hand": "๐Ÿคš",
  1320. "raised_eyebrow": "๐Ÿคจ",
  1321. "raised_hand": "โœ‹",
  1322. "raised_hand_with_fingers_splayed": "๐Ÿ–๏ธ",
  1323. "raised_hands": "๐Ÿ™Œ",
  1324. "raising_hand": "๐Ÿ™‹",
  1325. "raising_hand_man": "๐Ÿ™‹โ€โ™‚๏ธ",
  1326. "raising_hand_woman": "๐Ÿ™‹โ€โ™€๏ธ",
  1327. "ram": "๐Ÿ",
  1328. "ramen": "๐Ÿœ",
  1329. "rat": "๐Ÿ€",
  1330. "razor": "๐Ÿช’",
  1331. "receipt": "๐Ÿงพ",
  1332. "record_button": "โบ๏ธ",
  1333. "recycle": "โ™ป๏ธ",
  1334. "red_car": "๐Ÿš—",
  1335. "red_circle": "๐Ÿ”ด",
  1336. "red_envelope": "๐Ÿงง",
  1337. "red_haired_man": "๐Ÿ‘จโ€๐Ÿฆฐ",
  1338. "red_haired_woman": "๐Ÿ‘ฉโ€๐Ÿฆฐ",
  1339. "red_square": "๐ŸŸฅ",
  1340. "registered": "ยฎ๏ธ",
  1341. "relaxed": "โ˜บ๏ธ",
  1342. "relieved": "๐Ÿ˜Œ",
  1343. "reminder_ribbon": "๐ŸŽ—๏ธ",
  1344. "repeat": "๐Ÿ”",
  1345. "repeat_one": "๐Ÿ”‚",
  1346. "rescue_worker_helmet": "โ›‘๏ธ",
  1347. "restroom": "๐Ÿšป",
  1348. "reunion": "๐Ÿ‡ท๐Ÿ‡ช",
  1349. "revolving_hearts": "๐Ÿ’ž",
  1350. "rewind": "โช",
  1351. "rhinoceros": "๐Ÿฆ",
  1352. "ribbon": "๐ŸŽ€",
  1353. "rice": "๐Ÿš",
  1354. "rice_ball": "๐Ÿ™",
  1355. "rice_cracker": "๐Ÿ˜",
  1356. "rice_scene": "๐ŸŽ‘",
  1357. "right_anger_bubble": "๐Ÿ—ฏ๏ธ",
  1358. "ring": "๐Ÿ’",
  1359. "ringed_planet": "๐Ÿช",
  1360. "robot": "๐Ÿค–",
  1361. "rock": "๐Ÿชจ",
  1362. "rocket": "๐Ÿš€",
  1363. "rofl": "๐Ÿคฃ",
  1364. "roll_eyes": "๐Ÿ™„",
  1365. "roll_of_paper": "๐Ÿงป",
  1366. "roller_coaster": "๐ŸŽข",
  1367. "roller_skate": "๐Ÿ›ผ",
  1368. "romania": "๐Ÿ‡ท๐Ÿ‡ด",
  1369. "rooster": "๐Ÿ“",
  1370. "rose": "๐ŸŒน",
  1371. "rosette": "๐Ÿต๏ธ",
  1372. "rotating_light": "๐Ÿšจ",
  1373. "round_pushpin": "๐Ÿ“",
  1374. "rowboat": "๐Ÿšฃ",
  1375. "rowing_man": "๐Ÿšฃโ€โ™‚๏ธ",
  1376. "rowing_woman": "๐Ÿšฃโ€โ™€๏ธ",
  1377. "ru": "๐Ÿ‡ท๐Ÿ‡บ",
  1378. "rugby_football": "๐Ÿ‰",
  1379. "runner": "๐Ÿƒ",
  1380. "running": "๐Ÿƒ",
  1381. "running_man": "๐Ÿƒโ€โ™‚๏ธ",
  1382. "running_shirt_with_sash": "๐ŸŽฝ",
  1383. "running_woman": "๐Ÿƒโ€โ™€๏ธ",
  1384. "rwanda": "๐Ÿ‡ท๐Ÿ‡ผ",
  1385. "sa": "๐Ÿˆ‚๏ธ",
  1386. "safety_pin": "๐Ÿงท",
  1387. "safety_vest": "๐Ÿฆบ",
  1388. "sagittarius": "โ™",
  1389. "sailboat": "โ›ต",
  1390. "sake": "๐Ÿถ",
  1391. "salt": "๐Ÿง‚",
  1392. "samoa": "๐Ÿ‡ผ๐Ÿ‡ธ",
  1393. "san_marino": "๐Ÿ‡ธ๐Ÿ‡ฒ",
  1394. "sandal": "๐Ÿ‘ก",
  1395. "sandwich": "๐Ÿฅช",
  1396. "santa": "๐ŸŽ…",
  1397. "sao_tome_principe": "๐Ÿ‡ธ๐Ÿ‡น",
  1398. "sari": "๐Ÿฅป",
  1399. "sassy_man": "๐Ÿ’โ€โ™‚๏ธ",
  1400. "sassy_woman": "๐Ÿ’โ€โ™€๏ธ",
  1401. "satellite": "๐Ÿ“ก",
  1402. "satisfied": "๐Ÿ˜†",
  1403. "saudi_arabia": "๐Ÿ‡ธ๐Ÿ‡ฆ",
  1404. "sauna_man": "๐Ÿง–โ€โ™‚๏ธ",
  1405. "sauna_person": "๐Ÿง–",
  1406. "sauna_woman": "๐Ÿง–โ€โ™€๏ธ",
  1407. "sauropod": "๐Ÿฆ•",
  1408. "saxophone": "๐ŸŽท",
  1409. "scarf": "๐Ÿงฃ",
  1410. "school": "๐Ÿซ",
  1411. "school_satchel": "๐ŸŽ’",
  1412. "scientist": "๐Ÿง‘โ€๐Ÿ”ฌ",
  1413. "scissors": "โœ‚๏ธ",
  1414. "scorpion": "๐Ÿฆ‚",
  1415. "scorpius": "โ™",
  1416. "scotland": "๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ",
  1417. "scream": "๐Ÿ˜ฑ",
  1418. "scream_cat": "๐Ÿ™€",
  1419. "screwdriver": "๐Ÿช›",
  1420. "scroll": "๐Ÿ“œ",
  1421. "seal": "๐Ÿฆญ",
  1422. "seat": "๐Ÿ’บ",
  1423. "secret": "ใŠ™๏ธ",
  1424. "see_no_evil": "๐Ÿ™ˆ",
  1425. "seedling": "๐ŸŒฑ",
  1426. "selfie": "๐Ÿคณ",
  1427. "senegal": "๐Ÿ‡ธ๐Ÿ‡ณ",
  1428. "serbia": "๐Ÿ‡ท๐Ÿ‡ธ",
  1429. "service_dog": "๐Ÿ•โ€๐Ÿฆบ",
  1430. "seven": "7๏ธโƒฃ",
  1431. "sewing_needle": "๐Ÿชก",
  1432. "seychelles": "๐Ÿ‡ธ๐Ÿ‡จ",
  1433. "shallow_pan_of_food": "๐Ÿฅ˜",
  1434. "shamrock": "โ˜˜๏ธ",
  1435. "shark": "๐Ÿฆˆ",
  1436. "shaved_ice": "๐Ÿง",
  1437. "sheep": "๐Ÿ‘",
  1438. "shell": "๐Ÿš",
  1439. "shield": "๐Ÿ›ก๏ธ",
  1440. "shinto_shrine": "โ›ฉ๏ธ",
  1441. "ship": "๐Ÿšข",
  1442. "shirt": "๐Ÿ‘•",
  1443. "shit": "๐Ÿ’ฉ",
  1444. "shoe": "๐Ÿ‘ž",
  1445. "shopping": "๐Ÿ›๏ธ",
  1446. "shopping_cart": "๐Ÿ›’",
  1447. "shorts": "๐Ÿฉณ",
  1448. "shower": "๐Ÿšฟ",
  1449. "shrimp": "๐Ÿฆ",
  1450. "shrug": "๐Ÿคท",
  1451. "shushing_face": "๐Ÿคซ",
  1452. "sierra_leone": "๐Ÿ‡ธ๐Ÿ‡ฑ",
  1453. "signal_strength": "๐Ÿ“ถ",
  1454. "singapore": "๐Ÿ‡ธ๐Ÿ‡ฌ",
  1455. "singer": "๐Ÿง‘โ€๐ŸŽค",
  1456. "sint_maarten": "๐Ÿ‡ธ๐Ÿ‡ฝ",
  1457. "six": "6๏ธโƒฃ",
  1458. "six_pointed_star": "๐Ÿ”ฏ",
  1459. "skateboard": "๐Ÿ›น",
  1460. "ski": "๐ŸŽฟ",
  1461. "skier": "โ›ท๏ธ",
  1462. "skull": "๐Ÿ’€",
  1463. "skull_and_crossbones": "โ˜ ๏ธ",
  1464. "skunk": "๐Ÿฆจ",
  1465. "sled": "๐Ÿ›ท",
  1466. "sleeping": "๐Ÿ˜ด",
  1467. "sleeping_bed": "๐Ÿ›Œ",
  1468. "sleepy": "๐Ÿ˜ช",
  1469. "slightly_frowning_face": "๐Ÿ™",
  1470. "slightly_smiling_face": "๐Ÿ™‚",
  1471. "slot_machine": "๐ŸŽฐ",
  1472. "sloth": "๐Ÿฆฅ",
  1473. "slovakia": "๐Ÿ‡ธ๐Ÿ‡ฐ",
  1474. "slovenia": "๐Ÿ‡ธ๐Ÿ‡ฎ",
  1475. "small_airplane": "๐Ÿ›ฉ๏ธ",
  1476. "small_blue_diamond": "๐Ÿ”น",
  1477. "small_orange_diamond": "๐Ÿ”ธ",
  1478. "small_red_triangle": "๐Ÿ”บ",
  1479. "small_red_triangle_down": "๐Ÿ”ป",
  1480. "smile": "๐Ÿ˜„",
  1481. "smile_cat": "๐Ÿ˜ธ",
  1482. "smiley": "๐Ÿ˜ƒ",
  1483. "smiley_cat": "๐Ÿ˜บ",
  1484. "smiling_face_with_tear": "๐Ÿฅฒ",
  1485. "smiling_face_with_three_hearts": "๐Ÿฅฐ",
  1486. "smiling_imp": "๐Ÿ˜ˆ",
  1487. "smirk": "๐Ÿ˜",
  1488. "smirk_cat": "๐Ÿ˜ผ",
  1489. "smoking": "๐Ÿšฌ",
  1490. "snail": "๐ŸŒ",
  1491. "snake": "๐Ÿ",
  1492. "sneezing_face": "๐Ÿคง",
  1493. "snowboarder": "๐Ÿ‚",
  1494. "snowflake": "โ„๏ธ",
  1495. "snowman": "โ›„",
  1496. "snowman_with_snow": "โ˜ƒ๏ธ",
  1497. "soap": "๐Ÿงผ",
  1498. "sob": "๐Ÿ˜ญ",
  1499. "soccer": "โšฝ",
  1500. "socks": "๐Ÿงฆ",
  1501. "softball": "๐ŸฅŽ",
  1502. "solomon_islands": "๐Ÿ‡ธ๐Ÿ‡ง",
  1503. "somalia": "๐Ÿ‡ธ๐Ÿ‡ด",
  1504. "soon": "๐Ÿ”œ",
  1505. "sos": "๐Ÿ†˜",
  1506. "sound": "๐Ÿ”‰",
  1507. "south_africa": "๐Ÿ‡ฟ๐Ÿ‡ฆ",
  1508. "south_georgia_south_sandwich_islands": "๐Ÿ‡ฌ๐Ÿ‡ธ",
  1509. "south_sudan": "๐Ÿ‡ธ๐Ÿ‡ธ",
  1510. "space_invader": "๐Ÿ‘พ",
  1511. "spades": "โ™ ๏ธ",
  1512. "spaghetti": "๐Ÿ",
  1513. "sparkle": "โ‡๏ธ",
  1514. "sparkler": "๐ŸŽ‡",
  1515. "sparkles": "โœจ",
  1516. "sparkling_heart": "๐Ÿ’–",
  1517. "speak_no_evil": "๐Ÿ™Š",
  1518. "speaker": "๐Ÿ”ˆ",
  1519. "speaking_head": "๐Ÿ—ฃ๏ธ",
  1520. "speech_balloon": "๐Ÿ’ฌ",
  1521. "speedboat": "๐Ÿšค",
  1522. "spider": "๐Ÿ•ท๏ธ",
  1523. "spider_web": "๐Ÿ•ธ๏ธ",
  1524. "spiral_calendar": "๐Ÿ—“๏ธ",
  1525. "spiral_notepad": "๐Ÿ—’๏ธ",
  1526. "sponge": "๐Ÿงฝ",
  1527. "spoon": "๐Ÿฅ„",
  1528. "squid": "๐Ÿฆ‘",
  1529. "sri_lanka": "๐Ÿ‡ฑ๐Ÿ‡ฐ",
  1530. "st_barthelemy": "๐Ÿ‡ง๐Ÿ‡ฑ",
  1531. "st_helena": "๐Ÿ‡ธ๐Ÿ‡ญ",
  1532. "st_kitts_nevis": "๐Ÿ‡ฐ๐Ÿ‡ณ",
  1533. "st_lucia": "๐Ÿ‡ฑ๐Ÿ‡จ",
  1534. "st_martin": "๐Ÿ‡ฒ๐Ÿ‡ซ",
  1535. "st_pierre_miquelon": "๐Ÿ‡ต๐Ÿ‡ฒ",
  1536. "st_vincent_grenadines": "๐Ÿ‡ป๐Ÿ‡จ",
  1537. "stadium": "๐ŸŸ๏ธ",
  1538. "standing_man": "๐Ÿงโ€โ™‚๏ธ",
  1539. "standing_person": "๐Ÿง",
  1540. "standing_woman": "๐Ÿงโ€โ™€๏ธ",
  1541. "star": "โญ",
  1542. "star2": "๐ŸŒŸ",
  1543. "star_and_crescent": "โ˜ช๏ธ",
  1544. "star_of_david": "โœก๏ธ",
  1545. "star_struck": "๐Ÿคฉ",
  1546. "stars": "๐ŸŒ ",
  1547. "station": "๐Ÿš‰",
  1548. "statue_of_liberty": "๐Ÿ—ฝ",
  1549. "steam_locomotive": "๐Ÿš‚",
  1550. "stethoscope": "๐Ÿฉบ",
  1551. "stew": "๐Ÿฒ",
  1552. "stop_button": "โน๏ธ",
  1553. "stop_sign": "๐Ÿ›‘",
  1554. "stopwatch": "โฑ๏ธ",
  1555. "straight_ruler": "๐Ÿ“",
  1556. "strawberry": "๐Ÿ“",
  1557. "stuck_out_tongue": "๐Ÿ˜›",
  1558. "stuck_out_tongue_closed_eyes": "๐Ÿ˜",
  1559. "stuck_out_tongue_winking_eye": "๐Ÿ˜œ",
  1560. "student": "๐Ÿง‘โ€๐ŸŽ“",
  1561. "studio_microphone": "๐ŸŽ™๏ธ",
  1562. "stuffed_flatbread": "๐Ÿฅ™",
  1563. "sudan": "๐Ÿ‡ธ๐Ÿ‡ฉ",
  1564. "sun_behind_large_cloud": "๐ŸŒฅ๏ธ",
  1565. "sun_behind_rain_cloud": "๐ŸŒฆ๏ธ",
  1566. "sun_behind_small_cloud": "๐ŸŒค๏ธ",
  1567. "sun_with_face": "๐ŸŒž",
  1568. "sunflower": "๐ŸŒป",
  1569. "sunglasses": "๐Ÿ˜Ž",
  1570. "sunny": "โ˜€๏ธ",
  1571. "sunrise": "๐ŸŒ…",
  1572. "sunrise_over_mountains": "๐ŸŒ„",
  1573. "superhero": "๐Ÿฆธ",
  1574. "superhero_man": "๐Ÿฆธโ€โ™‚๏ธ",
  1575. "superhero_woman": "๐Ÿฆธโ€โ™€๏ธ",
  1576. "supervillain": "๐Ÿฆน",
  1577. "supervillain_man": "๐Ÿฆนโ€โ™‚๏ธ",
  1578. "supervillain_woman": "๐Ÿฆนโ€โ™€๏ธ",
  1579. "surfer": "๐Ÿ„",
  1580. "surfing_man": "๐Ÿ„โ€โ™‚๏ธ",
  1581. "surfing_woman": "๐Ÿ„โ€โ™€๏ธ",
  1582. "suriname": "๐Ÿ‡ธ๐Ÿ‡ท",
  1583. "sushi": "๐Ÿฃ",
  1584. "suspension_railway": "๐ŸšŸ",
  1585. "svalbard_jan_mayen": "๐Ÿ‡ธ๐Ÿ‡ฏ",
  1586. "swan": "๐Ÿฆข",
  1587. "swaziland": "๐Ÿ‡ธ๐Ÿ‡ฟ",
  1588. "sweat": "๐Ÿ˜“",
  1589. "sweat_drops": "๐Ÿ’ฆ",
  1590. "sweat_smile": "๐Ÿ˜…",
  1591. "sweden": "๐Ÿ‡ธ๐Ÿ‡ช",
  1592. "sweet_potato": "๐Ÿ ",
  1593. "swim_brief": "๐Ÿฉฒ",
  1594. "swimmer": "๐ŸŠ",
  1595. "swimming_man": "๐ŸŠโ€โ™‚๏ธ",
  1596. "swimming_woman": "๐ŸŠโ€โ™€๏ธ",
  1597. "switzerland": "๐Ÿ‡จ๐Ÿ‡ญ",
  1598. "symbols": "๐Ÿ”ฃ",
  1599. "synagogue": "๐Ÿ•",
  1600. "syria": "๐Ÿ‡ธ๐Ÿ‡พ",
  1601. "syringe": "๐Ÿ’‰",
  1602. "t-rex": "๐Ÿฆ–",
  1603. "taco": "๐ŸŒฎ",
  1604. "tada": "๐ŸŽ‰",
  1605. "taiwan": "๐Ÿ‡น๐Ÿ‡ผ",
  1606. "tajikistan": "๐Ÿ‡น๐Ÿ‡ฏ",
  1607. "takeout_box": "๐Ÿฅก",
  1608. "tamale": "๐Ÿซ”",
  1609. "tanabata_tree": "๐ŸŽ‹",
  1610. "tangerine": "๐ŸŠ",
  1611. "tanzania": "๐Ÿ‡น๐Ÿ‡ฟ",
  1612. "taurus": "โ™‰",
  1613. "taxi": "๐Ÿš•",
  1614. "tea": "๐Ÿต",
  1615. "teacher": "๐Ÿง‘โ€๐Ÿซ",
  1616. "teapot": "๐Ÿซ–",
  1617. "technologist": "๐Ÿง‘โ€๐Ÿ’ป",
  1618. "teddy_bear": "๐Ÿงธ",
  1619. "telephone": "โ˜Ž๏ธ",
  1620. "telephone_receiver": "๐Ÿ“ž",
  1621. "telescope": "๐Ÿ”ญ",
  1622. "tennis": "๐ŸŽพ",
  1623. "tent": "โ›บ",
  1624. "test_tube": "๐Ÿงช",
  1625. "thailand": "๐Ÿ‡น๐Ÿ‡ญ",
  1626. "thermometer": "๐ŸŒก๏ธ",
  1627. "thinking": "๐Ÿค”",
  1628. "thong_sandal": "๐Ÿฉด",
  1629. "thought_balloon": "๐Ÿ’ญ",
  1630. "thread": "๐Ÿงต",
  1631. "three": "3๏ธโƒฃ",
  1632. "thumbsdown": "๐Ÿ‘Ž",
  1633. "thumbsup": "๐Ÿ‘",
  1634. "ticket": "๐ŸŽซ",
  1635. "tickets": "๐ŸŽŸ๏ธ",
  1636. "tiger": "๐Ÿฏ",
  1637. "tiger2": "๐Ÿ…",
  1638. "timer_clock": "โฒ๏ธ",
  1639. "timor_leste": "๐Ÿ‡น๐Ÿ‡ฑ",
  1640. "tipping_hand_man": "๐Ÿ’โ€โ™‚๏ธ",
  1641. "tipping_hand_person": "๐Ÿ’",
  1642. "tipping_hand_woman": "๐Ÿ’โ€โ™€๏ธ",
  1643. "tired_face": "๐Ÿ˜ซ",
  1644. "tm": "โ„ข๏ธ",
  1645. "togo": "๐Ÿ‡น๐Ÿ‡ฌ",
  1646. "toilet": "๐Ÿšฝ",
  1647. "tokelau": "๐Ÿ‡น๐Ÿ‡ฐ",
  1648. "tokyo_tower": "๐Ÿ—ผ",
  1649. "tomato": "๐Ÿ…",
  1650. "tonga": "๐Ÿ‡น๐Ÿ‡ด",
  1651. "tongue": "๐Ÿ‘…",
  1652. "toolbox": "๐Ÿงฐ",
  1653. "tooth": "๐Ÿฆท",
  1654. "toothbrush": "๐Ÿชฅ",
  1655. "top": "๐Ÿ”",
  1656. "tophat": "๐ŸŽฉ",
  1657. "tornado": "๐ŸŒช๏ธ",
  1658. "tr": "๐Ÿ‡น๐Ÿ‡ท",
  1659. "trackball": "๐Ÿ–ฒ๏ธ",
  1660. "tractor": "๐Ÿšœ",
  1661. "traffic_light": "๐Ÿšฅ",
  1662. "train": "๐Ÿš‹",
  1663. "train2": "๐Ÿš†",
  1664. "tram": "๐ŸšŠ",
  1665. "transgender_flag": "๐Ÿณ๏ธโ€โšง๏ธ",
  1666. "transgender_symbol": "โšง๏ธ",
  1667. "triangular_flag_on_post": "๐Ÿšฉ",
  1668. "triangular_ruler": "๐Ÿ“",
  1669. "trident": "๐Ÿ”ฑ",
  1670. "trinidad_tobago": "๐Ÿ‡น๐Ÿ‡น",
  1671. "tristan_da_cunha": "๐Ÿ‡น๐Ÿ‡ฆ",
  1672. "triumph": "๐Ÿ˜ค",
  1673. "trolleybus": "๐ŸšŽ",
  1674. "trophy": "๐Ÿ†",
  1675. "tropical_drink": "๐Ÿน",
  1676. "tropical_fish": "๐Ÿ ",
  1677. "truck": "๐Ÿšš",
  1678. "trumpet": "๐ŸŽบ",
  1679. "tshirt": "๐Ÿ‘•",
  1680. "tulip": "๐ŸŒท",
  1681. "tumbler_glass": "๐Ÿฅƒ",
  1682. "tunisia": "๐Ÿ‡น๐Ÿ‡ณ",
  1683. "turkey": "๐Ÿฆƒ",
  1684. "turkmenistan": "๐Ÿ‡น๐Ÿ‡ฒ",
  1685. "turks_caicos_islands": "๐Ÿ‡น๐Ÿ‡จ",
  1686. "turtle": "๐Ÿข",
  1687. "tuvalu": "๐Ÿ‡น๐Ÿ‡ป",
  1688. "tv": "๐Ÿ“บ",
  1689. "twisted_rightwards_arrows": "๐Ÿ”€",
  1690. "two": "2๏ธโƒฃ",
  1691. "two_hearts": "๐Ÿ’•",
  1692. "two_men_holding_hands": "๐Ÿ‘ฌ",
  1693. "two_women_holding_hands": "๐Ÿ‘ญ",
  1694. "u5272": "๐Ÿˆน",
  1695. "u5408": "๐Ÿˆด",
  1696. "u55b6": "๐Ÿˆบ",
  1697. "u6307": "๐Ÿˆฏ",
  1698. "u6708": "๐Ÿˆท๏ธ",
  1699. "u6709": "๐Ÿˆถ",
  1700. "u6e80": "๐Ÿˆต",
  1701. "u7121": "๐Ÿˆš",
  1702. "u7533": "๐Ÿˆธ",
  1703. "u7981": "๐Ÿˆฒ",
  1704. "u7a7a": "๐Ÿˆณ",
  1705. "uganda": "๐Ÿ‡บ๐Ÿ‡ฌ",
  1706. "uk": "๐Ÿ‡ฌ๐Ÿ‡ง",
  1707. "ukraine": "๐Ÿ‡บ๐Ÿ‡ฆ",
  1708. "umbrella": "โ˜”",
  1709. "unamused": "๐Ÿ˜’",
  1710. "underage": "๐Ÿ”ž",
  1711. "unicorn": "๐Ÿฆ„",
  1712. "united_arab_emirates": "๐Ÿ‡ฆ๐Ÿ‡ช",
  1713. "united_nations": "๐Ÿ‡บ๐Ÿ‡ณ",
  1714. "unlock": "๐Ÿ”“",
  1715. "up": "๐Ÿ†™",
  1716. "upside_down_face": "๐Ÿ™ƒ",
  1717. "uruguay": "๐Ÿ‡บ๐Ÿ‡พ",
  1718. "us": "๐Ÿ‡บ๐Ÿ‡ธ",
  1719. "us_outlying_islands": "๐Ÿ‡บ๐Ÿ‡ฒ",
  1720. "us_virgin_islands": "๐Ÿ‡ป๐Ÿ‡ฎ",
  1721. "uzbekistan": "๐Ÿ‡บ๐Ÿ‡ฟ",
  1722. "v": "โœŒ๏ธ",
  1723. "vampire": "๐Ÿง›",
  1724. "vampire_man": "๐Ÿง›โ€โ™‚๏ธ",
  1725. "vampire_woman": "๐Ÿง›โ€โ™€๏ธ",
  1726. "vanuatu": "๐Ÿ‡ป๐Ÿ‡บ",
  1727. "vatican_city": "๐Ÿ‡ป๐Ÿ‡ฆ",
  1728. "venezuela": "๐Ÿ‡ป๐Ÿ‡ช",
  1729. "vertical_traffic_light": "๐Ÿšฆ",
  1730. "vhs": "๐Ÿ“ผ",
  1731. "vibration_mode": "๐Ÿ“ณ",
  1732. "video_camera": "๐Ÿ“น",
  1733. "video_game": "๐ŸŽฎ",
  1734. "vietnam": "๐Ÿ‡ป๐Ÿ‡ณ",
  1735. "violin": "๐ŸŽป",
  1736. "virgo": "โ™",
  1737. "volcano": "๐ŸŒ‹",
  1738. "volleyball": "๐Ÿ",
  1739. "vomiting_face": "๐Ÿคฎ",
  1740. "vs": "๐Ÿ†š",
  1741. "vulcan_salute": "๐Ÿ––",
  1742. "waffle": "๐Ÿง‡",
  1743. "wales": "๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ",
  1744. "walking": "๐Ÿšถ",
  1745. "walking_man": "๐Ÿšถโ€โ™‚๏ธ",
  1746. "walking_woman": "๐Ÿšถโ€โ™€๏ธ",
  1747. "wallis_futuna": "๐Ÿ‡ผ๐Ÿ‡ซ",
  1748. "waning_crescent_moon": "๐ŸŒ˜",
  1749. "waning_gibbous_moon": "๐ŸŒ–",
  1750. "warning": "โš ๏ธ",
  1751. "wastebasket": "๐Ÿ—‘๏ธ",
  1752. "watch": "โŒš",
  1753. "water_buffalo": "๐Ÿƒ",
  1754. "water_polo": "๐Ÿคฝ",
  1755. "watermelon": "๐Ÿ‰",
  1756. "wave": "๐Ÿ‘‹",
  1757. "wavy_dash": "ใ€ฐ๏ธ",
  1758. "waxing_crescent_moon": "๐ŸŒ’",
  1759. "waxing_gibbous_moon": "๐ŸŒ”",
  1760. "wc": "๐Ÿšพ",
  1761. "weary": "๐Ÿ˜ฉ",
  1762. "wedding": "๐Ÿ’’",
  1763. "weight_lifting": "๐Ÿ‹๏ธ",
  1764. "weight_lifting_man": "๐Ÿ‹๏ธโ€โ™‚๏ธ",
  1765. "weight_lifting_woman": "๐Ÿ‹๏ธโ€โ™€๏ธ",
  1766. "western_sahara": "๐Ÿ‡ช๐Ÿ‡ญ",
  1767. "whale": "๐Ÿณ",
  1768. "whale2": "๐Ÿ‹",
  1769. "wheel_of_dharma": "โ˜ธ๏ธ",
  1770. "wheelchair": "โ™ฟ",
  1771. "white_check_mark": "โœ…",
  1772. "white_circle": "โšช",
  1773. "white_flag": "๐Ÿณ๏ธ",
  1774. "white_flower": "๐Ÿ’ฎ",
  1775. "white_haired_man": "๐Ÿ‘จโ€๐Ÿฆณ",
  1776. "white_haired_woman": "๐Ÿ‘ฉโ€๐Ÿฆณ",
  1777. "white_heart": "๐Ÿค",
  1778. "white_large_square": "โฌœ",
  1779. "white_medium_small_square": "โ—ฝ",
  1780. "white_medium_square": "โ—ป๏ธ",
  1781. "white_small_square": "โ–ซ๏ธ",
  1782. "white_square_button": "๐Ÿ”ณ",
  1783. "wilted_flower": "๐Ÿฅ€",
  1784. "wind_chime": "๐ŸŽ",
  1785. "wind_face": "๐ŸŒฌ๏ธ",
  1786. "window": "๐ŸชŸ",
  1787. "wine_glass": "๐Ÿท",
  1788. "wink": "๐Ÿ˜‰",
  1789. "wolf": "๐Ÿบ",
  1790. "woman": "๐Ÿ‘ฉ",
  1791. "woman_artist": "๐Ÿ‘ฉโ€๐ŸŽจ",
  1792. "woman_astronaut": "๐Ÿ‘ฉโ€๐Ÿš€",
  1793. "woman_beard": "๐Ÿง”โ€โ™€๏ธ",
  1794. "woman_cartwheeling": "๐Ÿคธโ€โ™€๏ธ",
  1795. "woman_cook": "๐Ÿ‘ฉโ€๐Ÿณ",
  1796. "woman_dancing": "๐Ÿ’ƒ",
  1797. "woman_facepalming": "๐Ÿคฆโ€โ™€๏ธ",
  1798. "woman_factory_worker": "๐Ÿ‘ฉโ€๐Ÿญ",
  1799. "woman_farmer": "๐Ÿ‘ฉโ€๐ŸŒพ",
  1800. "woman_feeding_baby": "๐Ÿ‘ฉโ€๐Ÿผ",
  1801. "woman_firefighter": "๐Ÿ‘ฉโ€๐Ÿš’",
  1802. "woman_health_worker": "๐Ÿ‘ฉโ€โš•๏ธ",
  1803. "woman_in_manual_wheelchair": "๐Ÿ‘ฉโ€๐Ÿฆฝ",
  1804. "woman_in_motorized_wheelchair": "๐Ÿ‘ฉโ€๐Ÿฆผ",
  1805. "woman_in_tuxedo": "๐Ÿคตโ€โ™€๏ธ",
  1806. "woman_judge": "๐Ÿ‘ฉโ€โš–๏ธ",
  1807. "woman_juggling": "๐Ÿคนโ€โ™€๏ธ",
  1808. "woman_mechanic": "๐Ÿ‘ฉโ€๐Ÿ”ง",
  1809. "woman_office_worker": "๐Ÿ‘ฉโ€๐Ÿ’ผ",
  1810. "woman_pilot": "๐Ÿ‘ฉโ€โœˆ๏ธ",
  1811. "woman_playing_handball": "๐Ÿคพโ€โ™€๏ธ",
  1812. "woman_playing_water_polo": "๐Ÿคฝโ€โ™€๏ธ",
  1813. "woman_scientist": "๐Ÿ‘ฉโ€๐Ÿ”ฌ",
  1814. "woman_shrugging": "๐Ÿคทโ€โ™€๏ธ",
  1815. "woman_singer": "๐Ÿ‘ฉโ€๐ŸŽค",
  1816. "woman_student": "๐Ÿ‘ฉโ€๐ŸŽ“",
  1817. "woman_teacher": "๐Ÿ‘ฉโ€๐Ÿซ",
  1818. "woman_technologist": "๐Ÿ‘ฉโ€๐Ÿ’ป",
  1819. "woman_with_headscarf": "๐Ÿง•",
  1820. "woman_with_probing_cane": "๐Ÿ‘ฉโ€๐Ÿฆฏ",
  1821. "woman_with_turban": "๐Ÿ‘ณโ€โ™€๏ธ",
  1822. "woman_with_veil": "๐Ÿ‘ฐโ€โ™€๏ธ",
  1823. "womans_clothes": "๐Ÿ‘š",
  1824. "womans_hat": "๐Ÿ‘’",
  1825. "women_wrestling": "๐Ÿคผโ€โ™€๏ธ",
  1826. "womens": "๐Ÿšบ",
  1827. "wood": "๐Ÿชต",
  1828. "woozy_face": "๐Ÿฅด",
  1829. "world_map": "๐Ÿ—บ๏ธ",
  1830. "worm": "๐Ÿชฑ",
  1831. "worried": "๐Ÿ˜Ÿ",
  1832. "wrench": "๐Ÿ”ง",
  1833. "wrestling": "๐Ÿคผ",
  1834. "writing_hand": "โœ๏ธ",
  1835. "x": "โŒ",
  1836. "yarn": "๐Ÿงถ",
  1837. "yawning_face": "๐Ÿฅฑ",
  1838. "yellow_circle": "๐ŸŸก",
  1839. "yellow_heart": "๐Ÿ’›",
  1840. "yellow_square": "๐ŸŸจ",
  1841. "yemen": "๐Ÿ‡พ๐Ÿ‡ช",
  1842. "yen": "๐Ÿ’ด",
  1843. "yin_yang": "โ˜ฏ๏ธ",
  1844. "yo_yo": "๐Ÿช€",
  1845. "yum": "๐Ÿ˜‹",
  1846. "zambia": "๐Ÿ‡ฟ๐Ÿ‡ฒ",
  1847. "zany_face": "๐Ÿคช",
  1848. "zap": "โšก",
  1849. "zebra": "๐Ÿฆ“",
  1850. "zero": "0๏ธโƒฃ",
  1851. "zimbabwe": "๐Ÿ‡ฟ๐Ÿ‡ผ",
  1852. "zipper_mouth_face": "๐Ÿค",
  1853. "zombie": "๐ŸงŸ",
  1854. "zombie_man": "๐ŸงŸโ€โ™‚๏ธ",
  1855. "zombie_woman": "๐ŸงŸโ€โ™€๏ธ",
  1856. "zzz": "๐Ÿ’ค"
  1857. }