eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

en_emoji 69KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821
  1. // Emoji and Other Symbol pronunciations for English
  2. //
  3. // Entries with `text|emoji` in the comments have text and emoji forms. They
  4. // can be followed by [FE0E] to select the text style, and [FE0F] to select
  5. // the emoji style.
  6. //
  7. // Entries with 'other' in the comments are not defined as emoji, but are other
  8. // Unicode characters.
  9. //
  10. // NOTE: See `src/ucd-tools/data/espeak-ng/emoji-data.txt` for additional data
  11. // in interpreting ZWJ emoji sequences.
  12. $textmode
  13. // 0000..007F : C0 Controls and Basic Latin
  14. + plus // [002B] other
  15. // 0080..00FF : C1 Controls and Latin-1 Supplement
  16. ¢ cents // [00A2] other
  17. £ pound // [00A3] other
  18. ¤ currency sign // [00A4] other
  19. ¥ yen // [00A5] other
  20. § section // [00A7] other
  21. ¨ double dot // [00A8] other
  22. © copyright // [00A9] text|emoji
  23. ¬ not sign // [00AC] other
  24. ® registered // [00AE] text|emoji
  25. ° degrees // [00B0] other
  26. ± plus or minus // [00B1] other
  27. µ micro // [00B5] other
  28. ¶ paragraph // [00B6] other
  29. ¼ a quarter // [00BC] other
  30. ½ a half // [00BD] other
  31. ¾ three quarters // [00BE] other
  32. × times // [00D7] other
  33. ÷ divided by // [00F7] other
  34. // 02B0..02FF : Spacing Modifier Letters
  35. ˙ dot // [02D9] other
  36. // 0900..097F : Devanagari
  37. । danda // [0964] other
  38. // 2000..203C : General Punctuation
  39. ‼ double exclamation mark // [203C] text|emoji
  40. ⁉ exclamation question mark // [2049] text|emoji
  41. // 20A0..20CF : Currency Symbols
  42. ₨ rupee // [20A8] other
  43. € euros // [20AC] other
  44. ₹ rupee // [20B9] other
  45. // 2100..214F : Letterlike Symbols
  46. № numero // [2116] other
  47. ℞ prescription // [211E] other
  48. ™ trade mark // [2122] text|emoji
  49. ℹ information // [2139] text|emoji
  50. // 2150..218F : Number Forms
  51. ⅓ one third // [2153] other
  52. ⅔ two thirds // [2154] other
  53. // 2190..21FF : Arrows
  54. ← left arrow // [2190] other
  55. ↑ up arrow // [2191] other
  56. → right arrow // [2192] other
  57. ↓ down arrow // [2193] other
  58. ↔ left right arrow // [2194] text|emoji
  59. ↕ up down arrow // [2195] text|emoji
  60. ↖ up left arrow // [2196] text|emoji
  61. ↗ up right arrow // [2197] text|emoji
  62. ↘ down right arrow // [2198] text|emoji
  63. ↙ down left arrow // [2199] text|emoji
  64. ↩ right arrow curving left // [21A9] text|emoji
  65. ↪ left arrow curving right // [21AA] text|emoji
  66. // 2200..22FF : Mathematical Operators
  67. ∂ delta // [2202] other
  68. ∑ sum sign // [2211] other
  69. − minus // [2212] other
  70. ∗ asterisk // [2217] other
  71. √ square root // [221A] other
  72. ∛ cube root // [221B] other
  73. ∝ proportional to // [221D] other
  74. ∞ infinity // [221E] other
  75. ∫ integral // [222B] other
  76. ∬ double integral // [222C] other
  77. ∴ therefore // [2234] other
  78. ∵ because // [2235] other
  79. ≈ approximately // [2248] other
  80. ≠ not equal to // [2260] other
  81. ≡ identical to // [2261] other
  82. ≤ less or equal to // [2264] other
  83. ≥ greater or equal to // [2265] other
  84. // 2300..23FF : Miscellaneous Technical
  85. ⌚ watch // [231A]
  86. ⌛ hourglass done // [231B]
  87. ⌨ keyboard // [2328] text|emoji
  88. ⏏ eject button // [23CF] text|emoji
  89. ⏩ fast forward button // [23E9]
  90. ⏪ fast reverse button // [23EA]
  91. ⏫ fast up button // [23EB]
  92. ⏬ fast down button // [23EC]
  93. ⏭ next track button // [23ED] text|emoji
  94. ⏮ last track button // [23EE] text|emoji
  95. ⏯ play or pause button // [23EF] text|emoji
  96. ⏰ alarm clock // [23F0]
  97. ⏱ stopwatch // [23F1] text|emoji
  98. ⏲ timer clock // [23F2] text|emoji
  99. ⏳ hourglass not done // [23F3]
  100. ⏸ pause button // [23F8] text|emoji
  101. ⏹ stop button // [23F9] text|emoji
  102. ⏺ record button // [23FA] text|emoji
  103. // 2460..24FF : Enclosed Alphanumerics
  104. Ⓜ circled m // [24C2] text|emoji
  105. // 25A0..25FF : Geometric Shapes
  106. ■ black square // [25A0] other
  107. ▪ black small square // [25AA] text|emoji
  108. ▫ white small square // [25AB] text|emoji
  109. ▶ play button // [25B6] text|emoji
  110. ◀ reverse button // [25C0] text|emoji
  111. ● black circle // [25CF] other
  112. ◻ white medium square // [25FB] text|emoji
  113. ◼ black medium square // [25FC] text|emoji
  114. ◽ white medium small square // [25FD]
  115. ◾ black medium small square // [25FE]
  116. // 2600..26FF : Miscellaneous Symbols
  117. ☀ sun // [2600] text|emoji
  118. ☁ cloud // [2601] text|emoji
  119. ☂ umbrella // [2602] text|emoji
  120. ☃ snowman // [2603] text|emoji
  121. ☄ comet // [2604] text|emoji
  122. ☎ telephone // [260E] text|emoji
  123. ☑ ballot box with check // [2611] text|emoji
  124. ☔ umbrella with rain drops // [2614]
  125. ☕ hot beverage // [2615]
  126. ☘ shamrock // [2618] text|emoji
  127. ☝ index pointing up // [261D] text|emoji
  128. ☠ skull and crossbones // [2620] text|emoji
  129. ☢ radioactive // [2622] text|emoji
  130. ☣ biohazard // [2623] text|emoji
  131. ☦ orthodox cross // [2626] text|emoji
  132. ☪ star and crescent // [262A] text|emoji
  133. ☮ peace symbol // [262E] text|emoji
  134. ☯ yin yang // [262F] text|emoji
  135. ☸ wheel of dharma // [2638] text|emoji
  136. ☹ frowning face // [2639] text|emoji
  137. ☺ smiling face // [263A] text|emoji
  138. ♀ female sign // [2640] text|emoji
  139. ♂ male sign // [2642] text|emoji
  140. ♈ aries // [2648]
  141. ♉ taurus // [2649]
  142. ♊ gemini // [264A]
  143. ♋ cancer // [264B]
  144. ♌ leo // [264C]
  145. ♍ virgo // [264D]
  146. ♎ libra // [264E]
  147. ♏ scorpio // [264F]
  148. ♐ sagittarius // [2650]
  149. ♑ capricorn // [2651]
  150. ♒ aquarius // [2652]
  151. ♓ pisces // [2653]
  152. ♟ chess pawn // [265F] text|emoji
  153. ♠ spade suit // [2660] text|emoji
  154. ♣ club suit // [2663] text|emoji
  155. ♥ heart suit // [2665] text|emoji
  156. ♦ diamond suit // [2666] text|emoji
  157. ♨ hot springs // [2668] text|emoji
  158. ♭ flat // [266D] other
  159. ♯ sharp // [266F] other
  160. ♻ recycling symbol // [267B] text|emoji
  161. ♾ infinity // [267E] text|emoji
  162. ♿ wheelchair symbol // [267F]
  163. ⚒ hammer and pick // [2692] text|emoji
  164. ⚓ anchor // [2693]
  165. ⚔ crossed swords // [2694] text|emoji
  166. ⚕ medical symbol // [2695] text|emoji
  167. ⚖ balance scale // [2696] text|emoji
  168. ⚗ alembic // [2697] text|emoji
  169. ⚙ gear // [2699] text|emoji
  170. ⚛ atom symbol // [269B] text|emoji
  171. ⚜ fleur de lis // [269C] text|emoji
  172. ⚠ warning // [26A0] text|emoji
  173. ⚡ high voltage // [26A1]
  174. ⚪ white circle // [26AA]
  175. ⚫ black circle // [26AB]
  176. ⚰ coffin // [26B0] text|emoji
  177. ⚱ funeral urn // [26B1] text|emoji
  178. ⚽ soccer ball // [26BD]
  179. ⚾ baseball // [26BE]
  180. ⛄ snowman without snow // [26C4]
  181. ⛅ sun behind cloud // [26C5]
  182. ⛈ cloud with lightning and rain // [26C8] text|emoji
  183. ⛎ ophiuchus // [26CE]
  184. ⛏ pick // [26CF] text|emoji
  185. ⛑ rescue worker's helmet // [26D1] text|emoji
  186. ⛓ chains // [26D3] text|emoji
  187. ⛔ no entry // [26D4]
  188. ⛩ shinto shrine // [26E9] text|emoji
  189. ⛪ church // [26EA]
  190. ⛰ mountain // [26F0] text|emoji
  191. ⛱ umbrella on ground // [26F1] text|emoji
  192. ⛲ fountain // [26F2]
  193. ⛳ flag in hole // [26F3]
  194. ⛴ ferry // [26F4] text|emoji
  195. ⛵ sailboat // [26F5]
  196. ⛷ skier // [26F7] text|emoji
  197. ⛸ ice skate // [26F8] text|emoji
  198. ⛹ person bouncing ball // [26F9] text|emoji
  199. ⛺ tent // [26FA]
  200. ⛽ fuel pump // [26FD]
  201. // 2700..27BF : Dingbats
  202. ✂ scissors // [2702] text|emoji
  203. ✅ white heavy check mark // [2705]
  204. ✈ airplane // [2708] text|emoji
  205. ✉ envelope // [2709] text|emoji
  206. ✊ raised fist // [270A]
  207. ✋ raised hand // [270B]
  208. ✌ victory hand // [270C] text|emoji
  209. ✍ writing hand // [270D] text|emoji
  210. ✏ pencil // [270F] text|emoji
  211. ✒ black nib // [2712] text|emoji
  212. ✔ heavy check mark // [2714] text|emoji
  213. ✖ heavy multiplication x // [2716] text|emoji
  214. ✝ latin cross // [271D] text|emoji
  215. ✡ star of david // [2721] text|emoji
  216. ✨ sparkles // [2728]
  217. ✳ eight spoked asterisk // [2733] text|emoji
  218. ✴ eight pointed star // [2734] text|emoji
  219. ❄ snowflake // [2744] text|emoji
  220. ❇ sparkle // [2747] text|emoji
  221. ❌ cross mark // [274C]
  222. ❎ cross mark button // [274E]
  223. ❓ question mark // [2753]
  224. ❔ white question mark // [2754]
  225. ❕ white exclamation mark // [2755]
  226. ❗ exclamation mark // [2757]
  227. ❣ heavy heart exclamation // [2763] text|emoji
  228. ❤ red heart // [2764] text|emoji
  229. ➕ heavy plus sign // [2795]
  230. ➖ heavy minus sign // [2796]
  231. ➗ heavy division sign // [2797]
  232. ➡ right arrow // [27A1] text|emoji
  233. ➰ curly loop // [27B0]
  234. ➿ double curly loop // [27BF]
  235. // 2900..297F : Supplemental Arrows-B
  236. ⤴ right arrow curving up // [2934] text|emoji
  237. ⤵ right arrow curving down // [2935] text|emoji
  238. // 2B00..2BFF : Miscellaneous Symbols and Arrows
  239. ⬅ left arrow // [2B05] text|emoji
  240. ⬆ up arrow // [2B06] text|emoji
  241. ⬇ down arrow // [2B07] text|emoji
  242. ⬛ black large square // [2B1B]
  243. ⬜ white large square // [2B1C]
  244. ⭐ star // [2B50]
  245. ⭕ heavy large circle // [2B55]
  246. // 3000..303F : CJK Symbols and Punctuation
  247. 〰 wavy dash // [3030] text|emoji
  248. 〽 part alternation mark // [303D] text|emoji
  249. // 3200..32FF : Enclosed CJK Letters and Months
  250. ㊗ japanese congratulations button // [3297] text|emoji
  251. ㊙ japanese secret button // [3299] text|emoji
  252. // 1F100..1F1FF : Enclosed Alphanumeric Supplement
  253. 🅰 a button blood type // [1F170] text|emoji
  254. 🅱 b button blood type // [1F171] text|emoji
  255. 🅾 o button blood type // [1F17E] text|emoji
  256. 🅿 p button // [1F17F] text|emoji
  257. 🆎 a b button blood type // [1F18E]
  258. 🆑 c l button // [1F191]
  259. 🆒 cool button // [1F192]
  260. 🆓 free button // [1F193]
  261. 🆔 i d button // [1F194]
  262. 🆕 new button // [1F195]
  263. 🆖 n g button // [1F196]
  264. 🆗 o k button // [1F197]
  265. 🆘 s o s button // [1F198]
  266. 🆙 up exclamation mark button // [1F199]
  267. 🆚 v s button // [1F19A]
  268. // 1F200..1F2FF : Enclosed Ideographic Supplement
  269. 🈁 japanese here button // [1F201]
  270. 🈂 japanese service charge button // [1F202] text|emoji
  271. 🈚 japanese free of charge button // [1F21A]
  272. 🈯 japanese reserved button // [1F22F]
  273. 🈲 japanese prohibited button // [1F232]
  274. 🈳 japanese vacancy button // [1F233]
  275. 🈴 japanese passing grade button // [1F234]
  276. 🈵 japanese no vacancy button // [1F235]
  277. 🈶 japanese not free of charge button // [1F236]
  278. 🈷 japanese monthly amount button // [1F237] text|emoji
  279. 🈸 japanese application button // [1F238]
  280. 🈹 japanese discount button // [1F239]
  281. 🈺 japanese open for business button // [1F23A]
  282. 🉐 japanese bargain button // [1F250]
  283. 🉑 japanese acceptable button // [1F251]
  284. // 1F000..1F02F : Mahjong Tiles
  285. 🀄 mahjong red dragon // [1F004]
  286. // 1F0A0..1F0FF : Playing Cards
  287. 🃏 joker // [1F0CF]
  288. // 1F300..1F5FF : Miscellaneous Symbols and Pictographs
  289. 🌀 cyclone // [1F300]
  290. 🌁 foggy // [1F301]
  291. 🌂 closed umbrella // [1F302]
  292. 🌃 night with stars // [1F303]
  293. 🌄 sunrise over mountains // [1F304]
  294. 🌅 sunrise // [1F305]
  295. 🌆 cityscape at dusk // [1F306]
  296. 🌇 sunset // [1F307]
  297. 🌈 rainbow // [1F308]
  298. 🌉 bridge at night // [1F309]
  299. 🌊 water wave // [1F30A]
  300. 🌋 volcano // [1F30B]
  301. 🌌 milky way // [1F30C]
  302. 🌍 globe showing europe africa // [1F30D]
  303. 🌎 globe showing americas // [1F30E]
  304. 🌏 globe showing asia australia // [1F30F]
  305. 🌐 globe with meridians // [1F310]
  306. 🌑 new moon // [1F311]
  307. 🌒 waxing crescent moon // [1F312]
  308. 🌓 first quarter moon // [1F313]
  309. 🌔 waxing gibbous moon // [1F314]
  310. 🌕 full moon // [1F315]
  311. 🌖 waning gibbous moon // [1F316]
  312. 🌗 last quarter moon // [1F317]
  313. 🌘 waning crescent moon // [1F318]
  314. 🌙 crescent moon // [1F319]
  315. 🌚 new moon face // [1F31A]
  316. 🌛 first quarter moon face // [1F31B]
  317. 🌜 last quarter moon face // [1F31C]
  318. 🌝 full moon face // [1F31D]
  319. 🌞 sun with face // [1F31E]
  320. 🌟 glowing star // [1F31F]
  321. 🌠 shooting star // [1F320]
  322. 🌡 thermometer // [1F321] text|emoji
  323. 🌤 sun behind small cloud // [1F324] text|emoji
  324. 🌥 sun behind large cloud // [1F325] text|emoji
  325. 🌦 sun behind rain cloud // [1F326] text|emoji
  326. 🌧 cloud with rain // [1F327] text|emoji
  327. 🌨 cloud with snow // [1F328] text|emoji
  328. 🌩 cloud with lightning // [1F329] text|emoji
  329. 🌪 tornado // [1F32A] text|emoji
  330. 🌫 fog // [1F32B] text|emoji
  331. 🌬 wind face // [1F32C] text|emoji
  332. 🌭 hot dog // [1F32D]
  333. 🌮 taco // [1F32E]
  334. 🌯 burrito // [1F32F]
  335. 🌰 chestnut // [1F330]
  336. 🌱 seedling // [1F331]
  337. 🌲 evergreen tree // [1F332]
  338. 🌳 deciduous tree // [1F333]
  339. 🌴 palm tree // [1F334]
  340. 🌵 cactus // [1F335]
  341. 🌶 hot pepper // [1F336] text|emoji
  342. 🌷 tulip // [1F337]
  343. 🌸 cherry blossom // [1F338]
  344. 🌹 rose // [1F339]
  345. 🌺 hibiscus // [1F33A]
  346. 🌻 sunflower // [1F33B]
  347. 🌼 blossom // [1F33C]
  348. 🌽 ear of corn // [1F33D]
  349. 🌾 sheaf of rice // [1F33E]
  350. 🌿 herb // [1F33F]
  351. 🍀 four leaf clover // [1F340]
  352. 🍁 maple leaf // [1F341]
  353. 🍂 fallen leaf // [1F342]
  354. 🍃 leaf fluttering in wind // [1F343]
  355. 🍄 mushroom // [1F344]
  356. 🍅 tomato // [1F345]
  357. 🍆 eggplant // [1F346]
  358. 🍇 grapes // [1F347]
  359. 🍈 melon // [1F348]
  360. 🍉 watermelon // [1F349]
  361. 🍊 tangerine // [1F34A]
  362. 🍋 lemon // [1F34B]
  363. 🍌 banana // [1F34C]
  364. 🍍 pineapple // [1F34D]
  365. 🍎 red apple // [1F34E]
  366. 🍏 green apple // [1F34F]
  367. 🍐 pear // [1F350]
  368. 🍑 peach // [1F351]
  369. 🍒 cherries // [1F352]
  370. 🍓 strawberry // [1F353]
  371. 🍔 hamburger // [1F354]
  372. 🍕 pizza // [1F355]
  373. 🍖 meat on bone // [1F356]
  374. 🍗 poultry leg // [1F357]
  375. 🍘 rice cracker // [1F358]
  376. 🍙 rice ball // [1F359]
  377. 🍚 cooked rice // [1F35A]
  378. 🍛 curry rice // [1F35B]
  379. 🍜 steaming bowl // [1F35C]
  380. 🍝 spaghetti // [1F35D]
  381. 🍞 bread // [1F35E]
  382. 🍟 french fries // [1F35F]
  383. 🍠 roasted sweet potato // [1F360]
  384. 🍡 dango // [1F361]
  385. 🍢 oden // [1F362]
  386. 🍣 sushi // [1F363]
  387. 🍤 fried shrimp // [1F364]
  388. 🍥 fish cake with swirl // [1F365]
  389. 🍦 soft ice cream // [1F366]
  390. 🍧 shaved ice // [1F367]
  391. 🍨 ice cream // [1F368]
  392. 🍩 doughnut // [1F369]
  393. 🍪 cookie // [1F36A]
  394. 🍫 chocolate bar // [1F36B]
  395. 🍬 candy // [1F36C]
  396. 🍭 lollipop // [1F36D]
  397. 🍮 custard // [1F36E]
  398. 🍯 honey pot // [1F36F]
  399. 🍰 shortcake // [1F370]
  400. 🍱 bento box // [1F371]
  401. 🍲 pot of food // [1F372]
  402. 🍳 cooking // [1F373]
  403. 🍴 fork and knife // [1F374]
  404. 🍵 teacup without handle // [1F375]
  405. 🍶 sake // [1F376]
  406. 🍷 wine glass // [1F377]
  407. 🍸 cocktail glass // [1F378]
  408. 🍹 tropical drink // [1F379]
  409. 🍺 beer mug // [1F37A]
  410. 🍻 clinking beer mugs // [1F37B]
  411. 🍼 baby bottle // [1F37C]
  412. 🍽 fork and knife with plate // [1F37D] text|emoji
  413. 🍾 bottle with popping cork // [1F37E]
  414. 🍿 popcorn // [1F37F]
  415. 🎀 ribbon // [1F380]
  416. 🎁 wrapped gift // [1F381]
  417. 🎂 birthday cake // [1F382]
  418. 🎃 jack o'lantern // [1F383]
  419. 🎄 christmas tree // [1F384]
  420. 🎅 santa claus // [1F385]
  421. 🎆 fireworks // [1F386]
  422. 🎇 sparkler // [1F387]
  423. 🎈 balloon // [1F388]
  424. 🎉 party popper // [1F389]
  425. 🎊 confetti ball // [1F38A]
  426. 🎋 tanabata tree // [1F38B]
  427. 🎌 crossed flags // [1F38C]
  428. 🎍 pine decoration // [1F38D]
  429. 🎎 japanese dolls // [1F38E]
  430. 🎏 carp streamer // [1F38F]
  431. 🎐 wind chime // [1F390]
  432. 🎑 moon viewing ceremony // [1F391]
  433. 🎒 school backpack // [1F392]
  434. 🎓 graduation cap // [1F393]
  435. 🎖 military medal // [1F396] text|emoji
  436. 🎗 reminder ribbon // [1F397] text|emoji
  437. 🎙 studio microphone // [1F399] text|emoji
  438. 🎚 level slider // [1F39A] text|emoji
  439. 🎛 control knobs // [1F39B] text|emoji
  440. 🎞 film frames // [1F39E] text|emoji
  441. 🎟 admission tickets // [1F39F] text|emoji
  442. 🎠 carousel horse // [1F3A0]
  443. 🎡 ferris wheel // [1F3A1]
  444. 🎢 roller coaster // [1F3A2]
  445. 🎣 fishing pole // [1F3A3]
  446. 🎤 microphone // [1F3A4]
  447. 🎥 movie camera // [1F3A5]
  448. 🎦 cinema // [1F3A6]
  449. 🎧 headphone // [1F3A7]
  450. 🎨 artist palette // [1F3A8]
  451. 🎩 top hat // [1F3A9]
  452. 🎪 circus tent // [1F3AA]
  453. 🎫 ticket // [1F3AB]
  454. 🎬 clapper board // [1F3AC]
  455. 🎭 performing arts // [1F3AD]
  456. 🎮 video game // [1F3AE]
  457. 🎯 direct hit // [1F3AF]
  458. 🎰 slot machine // [1F3B0]
  459. 🎱 pool 8 ball // [1F3B1]
  460. 🎲 game die // [1F3B2]
  461. 🎳 bowling // [1F3B3]
  462. 🎴 flower playing cards // [1F3B4]
  463. 🎵 musical note // [1F3B5]
  464. 🎶 musical notes // [1F3B6]
  465. 🎷 saxophone // [1F3B7]
  466. 🎸 guitar // [1F3B8]
  467. 🎹 musical keyboard // [1F3B9]
  468. 🎺 trumpet // [1F3BA]
  469. 🎻 violin // [1F3BB]
  470. 🎼 musical score // [1F3BC]
  471. 🎽 running shirt // [1F3BD]
  472. 🎾 tennis // [1F3BE]
  473. 🎿 skis // [1F3BF]
  474. 🏀 basketball // [1F3C0]
  475. 🏁 chequered flag // [1F3C1]
  476. 🏂 snowboarder // [1F3C2]
  477. 🏃 person running // [1F3C3]
  478. 🏄 person surfing // [1F3C4]
  479. 🏅 sports medal // [1F3C5]
  480. 🏆 trophy // [1F3C6]
  481. 🏇 horse racing // [1F3C7]
  482. 🏈 american football // [1F3C8]
  483. 🏉 rugby football // [1F3C9]
  484. 🏊 person swimming // [1F3CA]
  485. 🏋 person lifting weights // [1F3CB] text|emoji
  486. 🏌 person golfing // [1F3CC] text|emoji
  487. 🏍 motorcycle // [1F3CD] text|emoji
  488. 🏎 racing car // [1F3CE] text|emoji
  489. 🏏 cricket game // [1F3CF]
  490. 🏐 volleyball // [1F3D0]
  491. 🏑 field hockey // [1F3D1]
  492. 🏒 ice hockey // [1F3D2]
  493. 🏓 ping pong // [1F3D3]
  494. 🏔 snow capped mountain // [1F3D4] text|emoji
  495. 🏕 camping // [1F3D5] text|emoji
  496. 🏖 beach with umbrella // [1F3D6] text|emoji
  497. 🏗 building construction // [1F3D7] text|emoji
  498. 🏘 house // [1F3D8] text|emoji
  499. 🏙 cityscape // [1F3D9] text|emoji
  500. 🏚 derelict house // [1F3DA] text|emoji
  501. 🏛 classical building // [1F3DB] text|emoji
  502. 🏜 desert // [1F3DC] text|emoji
  503. 🏝 desert island // [1F3DD] text|emoji
  504. 🏞 national park // [1F3DE] text|emoji
  505. 🏟 stadium // [1F3DF] text|emoji
  506. 🏠 houses // [1F3E0]
  507. 🏡 house with garden // [1F3E1]
  508. 🏢 office building // [1F3E2]
  509. 🏣 japanese post office // [1F3E3]
  510. 🏤 post office // [1F3E4]
  511. 🏥 hospital // [1F3E5]
  512. 🏦 bank // [1F3E6]
  513. 🏧 a t m sign // [1F3E7]
  514. 🏨 hotel // [1F3E8]
  515. 🏩 love hotel // [1F3E9]
  516. 🏪 convenience store // [1F3EA]
  517. 🏫 school // [1F3EB]
  518. 🏬 department store // [1F3EC]
  519. 🏭 factory // [1F3ED]
  520. 🏮 red paper lantern // [1F3EE]
  521. 🏯 japanese castle // [1F3EF]
  522. 🏰 castle // [1F3F0]
  523. 🏳 white flag // [1F3F3] text|emoji
  524. 🏴 black flag // [1F3F4]
  525. 🏵 rosette // [1F3F5] text|emoji
  526. 🏷 label // [1F3F7] text|emoji
  527. 🏸 badminton // [1F3F8]
  528. 🏹 bow and arrow // [1F3F9]
  529. 🏺 amphora // [1F3FA]
  530. 🏻 light skin tone // [1F3FB]
  531. 🏼 medium-light skin tone // [1F3FC]
  532. 🏽 medium skin tone // [1F3FD]
  533. 🏾 medium-dark skin tone // [1F3FE]
  534. 🏿 dark skin tone // [1F3FF]
  535. 🐀 rat // [1F400]
  536. 🐁 mouse // [1F401]
  537. 🐂 ox // [1F402]
  538. 🐃 water buffalo // [1F403]
  539. 🐄 cow // [1F404]
  540. 🐅 tiger // [1F405]
  541. 🐆 leopard // [1F406]
  542. 🐇 rabbit // [1F407]
  543. 🐈 cat // [1F408]
  544. 🐉 dragon // [1F409]
  545. 🐊 crocodile // [1F40A]
  546. 🐋 whale // [1F40B]
  547. 🐌 snail // [1F40C]
  548. 🐍 snake // [1F40D]
  549. 🐎 horse // [1F40E]
  550. 🐏 ram // [1F40F]
  551. 🐐 goat // [1F410]
  552. 🐑 ewe // [1F411]
  553. 🐒 monkey // [1F412]
  554. 🐓 rooster // [1F413]
  555. 🐔 chicken // [1F414]
  556. 🐕 dog // [1F415]
  557. 🐖 pig // [1F416]
  558. 🐗 boar // [1F417]
  559. 🐘 elephant // [1F418]
  560. 🐙 octopus // [1F419]
  561. 🐚 spiral shell // [1F41A]
  562. 🐛 bug // [1F41B]
  563. 🐜 ant // [1F41C]
  564. 🐝 honeybee // [1F41D]
  565. 🐞 lady beetle // [1F41E]
  566. 🐟 fish // [1F41F]
  567. 🐠 tropical fish // [1F420]
  568. 🐡 blowfish // [1F421]
  569. 🐢 turtle // [1F422]
  570. 🐣 hatching chick // [1F423]
  571. 🐤 baby chick // [1F424]
  572. 🐥 front facing baby chick // [1F425]
  573. 🐦 bird // [1F426]
  574. 🐧 penguin // [1F427]
  575. 🐨 koala // [1F428]
  576. 🐩 poodle // [1F429]
  577. 🐪 camel // [1F42A]
  578. 🐫 two hump camel // [1F42B]
  579. 🐬 dolphin // [1F42C]
  580. 🐭 mouse face // [1F42D]
  581. 🐮 cow face // [1F42E]
  582. 🐯 tiger face // [1F42F]
  583. 🐰 rabbit face // [1F430]
  584. 🐱 cat face // [1F431]
  585. 🐲 dragon face // [1F432]
  586. 🐳 spouting whale // [1F433]
  587. 🐴 horse face // [1F434]
  588. 🐵 monkey face // [1F435]
  589. 🐶 dog face // [1F436]
  590. 🐷 pig face // [1F437]
  591. 🐸 frog face // [1F438]
  592. 🐹 hamster face // [1F439]
  593. 🐺 wolf face // [1F43A]
  594. 🐻 bear face // [1F43B]
  595. 🐼 panda face // [1F43C]
  596. 🐽 pig nose // [1F43D]
  597. 🐾 paw prints // [1F43E]
  598. 🐿 chipmunk // [1F43F] text|emoji
  599. 👀 eyes // [1F440]
  600. 👁 eye // [1F441] text|emoji
  601. 👂 ear // [1F442]
  602. 👃 nose // [1F443]
  603. 👄 mouth // [1F444]
  604. 👅 tongue // [1F445]
  605. 👆 backhand index pointing up // [1F446]
  606. 👇 backhand index pointing down // [1F447]
  607. 👈 backhand index pointing left // [1F448]
  608. 👉 backhand index pointing right // [1F449]
  609. 👊 oncoming fist // [1F44A]
  610. 👋 waving hand // [1F44B]
  611. 👌 o k hand // [1F44C]
  612. 👍 thumbs up // [1F44D]
  613. 👎 thumbs down // [1F44E]
  614. 👏 clapping hands // [1F44F]
  615. 👐 open hands // [1F450]
  616. 👑 crown // [1F451]
  617. 👒 woman's hat // [1F452]
  618. 👓 glasses // [1F453]
  619. 👔 necktie // [1F454]
  620. 👕 t shirt // [1F455]
  621. 👖 jeans // [1F456]
  622. 👗 dress // [1F457]
  623. 👘 kimono // [1F458]
  624. 👙 bikini // [1F459]
  625. 👚 woman's clothes // [1F45A]
  626. 👛 purse // [1F45B]
  627. 👜 handbag // [1F45C]
  628. 👝 clutch bag // [1F45D]
  629. 👞 man's shoe // [1F45E]
  630. 👟 running shoe // [1F45F]
  631. 👠 high heeled shoe // [1F460]
  632. 👡 woman's sandal // [1F461]
  633. 👢 woman's boot // [1F462]
  634. 👣 footprints // [1F463]
  635. 👤 bust in silhouette // [1F464]
  636. 👥 busts in silhouette // [1F465]
  637. 👦 boy // [1F466]
  638. 👧 girl // [1F467]
  639. 👨 man // [1F468]
  640. 👩 woman // [1F469]
  641. 👪 family // [1F46A]
  642. 👫 man and woman holding hands // [1F46B]
  643. 👬 two men holding hands // [1F46C]
  644. 👭 two women holding hands // [1F46D]
  645. 👮 police officer // [1F46E]
  646. 👯 people with bunny ears // [1F46F]
  647. 👰 bride with veil // [1F470]
  648. 👱 blond haired person // [1F471]
  649. 👲 man with chinese cap // [1F472]
  650. 👳 person wearing turban // [1F473]
  651. 👴 old man // [1F474]
  652. 👵 old woman // [1F475]
  653. 👶 baby // [1F476]
  654. 👷 construction worker // [1F477]
  655. 👸 princess // [1F478]
  656. 👹 ogre // [1F479]
  657. 👺 goblin // [1F47A]
  658. 👻 ghost // [1F47B]
  659. 👼 baby angel // [1F47C]
  660. 👽 alien // [1F47D]
  661. 👾 alien monster // [1F47E]
  662. 👿 angry face with horns // [1F47F]
  663. 💀 skull // [1F480]
  664. 💁 person tipping hand // [1F481]
  665. 💂 guard // [1F482]
  666. 💃 woman dancing // [1F483]
  667. 💄 lipstick // [1F484]
  668. 💅 nail polish // [1F485]
  669. 💆 person getting massage // [1F486]
  670. 💇 person getting haircut // [1F487]
  671. 💈 barber pole // [1F488]
  672. 💉 syringe // [1F489]
  673. 💊 pill // [1F48A]
  674. 💋 kiss mark // [1F48B]
  675. 💌 love letter // [1F48C]
  676. 💍 ring // [1F48D]
  677. 💎 gem stone // [1F48E]
  678. 💏 kiss // [1F48F]
  679. 💐 bouquet // [1F490]
  680. 💑 couple with heart // [1F491]
  681. 💒 wedding // [1F492]
  682. 💓 beating heart // [1F493]
  683. 💔 broken heart // [1F494]
  684. 💕 two hearts // [1F495]
  685. 💖 sparkling heart // [1F496]
  686. 💗 growing heart // [1F497]
  687. 💘 heart with arrow // [1F498]
  688. 💙 blue heart // [1F499]
  689. 💚 green heart // [1F49A]
  690. 💛 yellow heart // [1F49B]
  691. 💜 purple heart // [1F49C]
  692. 💝 heart with ribbon // [1F49D]
  693. 💞 revolving hearts // [1F49E]
  694. 💟 heart decoration // [1F49F]
  695. 💠 diamond with a dot // [1F4A0]
  696. 💡 light bulb // [1F4A1]
  697. 💢 anger symbol // [1F4A2]
  698. 💣 bomb // [1F4A3]
  699. 💤 zzz // [1F4A4]
  700. 💥 collision // [1F4A5]
  701. 💦 sweat droplets // [1F4A6]
  702. 💧 droplet // [1F4A7]
  703. 💨 dashing away // [1F4A8]
  704. 💩 pile of poo // [1F4A9]
  705. 💪 flexed biceps // [1F4AA]
  706. 💫 dizzy // [1F4AB]
  707. 💬 speech balloon // [1F4AC]
  708. 💭 thought balloon // [1F4AD]
  709. 💮 white flower // [1F4AE]
  710. 💯 hundred points // [1F4AF]
  711. 💰 money bag // [1F4B0]
  712. 💱 currency exchange // [1F4B1]
  713. 💲 heavy dollar sign // [1F4B2]
  714. 💳 credit card // [1F4B3]
  715. 💴 yen banknote // [1F4B4]
  716. 💵 dollar banknote // [1F4B5]
  717. 💶 euro banknote // [1F4B6]
  718. 💷 pound banknote // [1F4B7]
  719. 💸 money with wings // [1F4B8]
  720. 💹 chart increasing with yen // [1F4B9]
  721. 💺 seat // [1F4BA]
  722. 💻 laptop computer // [1F4BB]
  723. 💼 briefcase // [1F4BC]
  724. 💽 computer disk // [1F4BD]
  725. 💾 floppy disk // [1F4BE]
  726. 💿 optical disk // [1F4BF]
  727. 📀 dvd // [1F4C0]
  728. 📁 file folder // [1F4C1]
  729. 📂 open file folder // [1F4C2]
  730. 📃 page with curl // [1F4C3]
  731. 📄 page facing up // [1F4C4]
  732. 📅 calendar // [1F4C5]
  733. 📆 tear off calendar // [1F4C6]
  734. 📇 card index // [1F4C7]
  735. 📈 chart increasing // [1F4C8]
  736. 📉 chart decreasing // [1F4C9]
  737. 📊 bar chart // [1F4CA]
  738. 📋 clipboard // [1F4CB]
  739. 📌 pushpin // [1F4CC]
  740. 📍 round pushpin // [1F4CD]
  741. 📎 paperclip // [1F4CE]
  742. 📏 straight ruler // [1F4CF]
  743. 📐 triangular ruler // [1F4D0]
  744. 📑 bookmark tabs // [1F4D1]
  745. 📒 ledger // [1F4D2]
  746. 📓 notebook // [1F4D3]
  747. 📔 notebook with decorative cover // [1F4D4]
  748. 📕 closed book // [1F4D5]
  749. 📖 open book // [1F4D6]
  750. 📗 green book // [1F4D7]
  751. 📘 blue book // [1F4D8]
  752. 📙 orange book // [1F4D9]
  753. 📚 books // [1F4DA]
  754. 📛 name badge // [1F4DB]
  755. 📜 scroll // [1F4DC]
  756. 📝 memo // [1F4DD]
  757. 📞 telephone receiver // [1F4DE]
  758. 📟 pager // [1F4DF]
  759. 📠 fax machine // [1F4E0]
  760. 📡 satellite antenna // [1F4E1]
  761. 📢 loudspeaker // [1F4E2]
  762. 📣 megaphone // [1F4E3]
  763. 📤 outbox tray // [1F4E4]
  764. 📥 inbox tray // [1F4E5]
  765. 📦 package // [1F4E6]
  766. 📧 e mail // [1F4E7]
  767. 📨 incoming envelope // [1F4E8]
  768. 📩 envelope with arrow // [1F4E9]
  769. 📪 closed mailbox with lowered flag // [1F4EA]
  770. 📫 closed mailbox with raised flag // [1F4EB]
  771. 📬 open mailbox with raised flag // [1F4EC]
  772. 📭 open mailbox with lowered flag // [1F4ED]
  773. 📮 postbox // [1F4EE]
  774. 📯 postal horn // [1F4EF]
  775. 📰 newspaper // [1F4F0]
  776. 📱 mobile phone // [1F4F1]
  777. 📲 mobile phone with arrow // [1F4F2]
  778. 📳 vibration mode // [1F4F3]
  779. 📴 mobile phone off // [1F4F4]
  780. 📵 no mobile phones // [1F4F5]
  781. 📶 antenna bars // [1F4F6]
  782. 📷 camera // [1F4F7]
  783. 📸 camera with flash // [1F4F8]
  784. 📹 video camera // [1F4F9]
  785. 📺 television // [1F4FA]
  786. 📻 radio // [1F4FB]
  787. 📼 videocassette // [1F4FC]
  788. 📽 film projector // [1F4FD] text|emoji
  789. 📿 prayer beads // [1F4FF]
  790. 🔀 shuffle tracks button // [1F500]
  791. 🔁 repeat button // [1F501]
  792. 🔂 repeat single button // [1F502]
  793. 🔃 clockwise vertical arrows // [1F503]
  794. 🔄 counterclockwise arrows button // [1F504]
  795. 🔅 dim button // [1F505]
  796. 🔆 bright button // [1F506]
  797. 🔇 muted speaker // [1F507]
  798. 🔈 speaker low volume // [1F508]
  799. 🔉 speaker medium volume // [1F509]
  800. 🔊 speaker high volume // [1F50A]
  801. 🔋 battery // [1F50B]
  802. 🔌 electric plug // [1F50C]
  803. 🔍 magnifying glass tilted left // [1F50D]
  804. 🔎 magnifying glass tilted right // [1F50E]
  805. 🔏 locked with pen // [1F50F]
  806. 🔐 locked with key // [1F510]
  807. 🔑 key // [1F511]
  808. 🔒 locked // [1F512]
  809. 🔓 unlocked // [1F513]
  810. 🔔 bell // [1F514]
  811. 🔕 bell with slash // [1F515]
  812. 🔖 bookmark // [1F516]
  813. 🔗 link // [1F517]
  814. 🔘 radio button // [1F518]
  815. 🔙 back arrow // [1F519]
  816. 🔚 end arrow // [1F51A]
  817. 🔛 on exclamation mark arrow // [1F51B]
  818. 🔜 soon arrow // [1F51C]
  819. 🔝 top arrow // [1F51D]
  820. 🔞 no one under eighteen // [1F51E]
  821. 🔟 keycap 10 // [1F51F]
  822. 🔠 input latin uppercase // [1F520]
  823. 🔡 input latin lowercase // [1F521]
  824. 🔢 input numbers // [1F522]
  825. 🔣 input symbols // [1F523]
  826. 🔤 input latin letters // [1F524]
  827. 🔥 fire // [1F525]
  828. 🔦 flashlight // [1F526]
  829. 🔧 wrench // [1F527]
  830. 🔨 hammer // [1F528]
  831. 🔩 nut and bolt // [1F529]
  832. 🔪 kitchen knife // [1F52A]
  833. 🔫 pistol // [1F52B]
  834. 🔬 microscope // [1F52C]
  835. 🔭 telescope // [1F52D]
  836. 🔮 crystal ball // [1F52E]
  837. 🔯 dotted six pointed star // [1F52F]
  838. 🔰 japanese symbol for beginner // [1F530]
  839. 🔱 trident emblem // [1F531]
  840. 🔲 black square button // [1F532]
  841. 🔳 white square button // [1F533]
  842. 🔴 red circle // [1F534]
  843. 🔵 blue circle // [1F535]
  844. 🔶 large orange diamond // [1F536]
  845. 🔷 large blue diamond // [1F537]
  846. 🔸 small orange diamond // [1F538]
  847. 🔹 small blue diamond // [1F539]
  848. 🔺 red triangle pointed up // [1F53A]
  849. 🔻 red triangle pointed down // [1F53B]
  850. 🔼 upwards button // [1F53C]
  851. 🔽 downwards button // [1F53D]
  852. 🕉 om // [1F549] text|emoji
  853. 🕊 dove // [1F54A] text|emoji
  854. 🕋 kaaba // [1F54B]
  855. 🕌 mosque // [1F54C]
  856. 🕍 synagogue // [1F54D]
  857. 🕎 menorah // [1F54E]
  858. 🕐 one o'clock // [1F550]
  859. 🕑 two o'clock // [1F551]
  860. 🕒 three o'clock // [1F552]
  861. 🕓 four o'clock // [1F553]
  862. 🕔 five o'clock // [1F554]
  863. 🕕 six o'clock // [1F555]
  864. 🕖 seven o'clock // [1F556]
  865. 🕗 eight o'clock // [1F557]
  866. 🕘 nine o'clock // [1F558]
  867. 🕙 ten o'clock // [1F559]
  868. 🕚 eleven o'clock // [1F55A]
  869. 🕛 twelve o'clock // [1F55B]
  870. 🕜 one thirty // [1F55C]
  871. 🕝 two thirty // [1F55D]
  872. 🕞 three thirty // [1F55E]
  873. 🕟 four thirty // [1F55F]
  874. 🕠 five thirty // [1F560]
  875. 🕡 six thirty // [1F561]
  876. 🕢 seven thirty // [1F562]
  877. 🕣 eight thirty // [1F563]
  878. 🕤 nine thirty // [1F564]
  879. 🕥 ten thirty // [1F565]
  880. 🕦 eleven thirty // [1F566]
  881. 🕧 twelve thirty // [1F567]
  882. 🕯 candle // [1F56F] text|emoji
  883. 🕰 mantelpiece clock // [1F570] text|emoji
  884. 🕳 hole // [1F573] text|emoji
  885. 🕴 man in suit levitating // [1F574] text|emoji
  886. 🕵 detective // [1F575] text|emoji
  887. 🕶 sunglasses // [1F576] text|emoji
  888. 🕷 spider // [1F577] text|emoji
  889. 🕸 spider web // [1F578] text|emoji
  890. 🕹 joystick // [1F579] text|emoji
  891. 🕺 man dancing // [1F57A]
  892. 🖇 linked paperclips // [1F587] text|emoji
  893. 🖊 pen // [1F58A] text|emoji
  894. 🖋 fountain pen // [1F58B] text|emoji
  895. 🖌 paintbrush // [1F58C] text|emoji
  896. 🖍 crayon // [1F58D] text|emoji
  897. 🖐 hand with fingers splayed // [1F590] text|emoji
  898. 🖕 middle finger // [1F595]
  899. 🖖 vulcan salute // [1F596]
  900. 🖤 black heart // [1F5A4]
  901. 🖥 desktop computer // [1F5A5] text|emoji
  902. 🖨 printer // [1F5A8] text|emoji
  903. 🖱 computer mouse // [1F5B1] text|emoji
  904. 🖲 trackball // [1F5B2] text|emoji
  905. 🖼 framed picture // [1F5BC] text|emoji
  906. 🗂 card index dividers // [1F5C2] text|emoji
  907. 🗃 card file box // [1F5C3] text|emoji
  908. 🗄 file cabinet // [1F5C4] text|emoji
  909. 🗑 wastebasket // [1F5D1] text|emoji
  910. 🗒 spiral notepad // [1F5D2] text|emoji
  911. 🗓 spiral calendar // [1F5D3] text|emoji
  912. 🗜 clamp // [1F5DC] text|emoji
  913. 🗝 old key // [1F5DD] text|emoji
  914. 🗞 rolled up newspaper // [1F5DE] text|emoji
  915. 🗡 dagger // [1F5E1] text|emoji
  916. 🗣 speaking head // [1F5E3] text|emoji
  917. 🗨 left speech bubble // [1F5E8] text|emoji
  918. 🗯 right anger bubble // [1F5EF] text|emoji
  919. 🗳 ballot box with ballot // [1F5F3] text|emoji
  920. 🗺 world map // [1F5FA] text|emoji
  921. 🗻 mount fuji // [1F5FB]
  922. 🗼 tokyo tower // [1F5FC]
  923. 🗽 statue of liberty // [1F5FD]
  924. 🗾 map of japan // [1F5FE]
  925. 🗿 moai // [1F5FF]
  926. // 1F600..1F64F : Emoticons
  927. 😀 grinning face // [1F600]
  928. 😁 beaming face with smiling eyes // [1F601]
  929. 😂 face with tears of joy // [1F602]
  930. 😃 grinning face with big eyes // [1F603]
  931. 😄 grinning face with smiling eyes // [1F604]
  932. 😅 grinning face with sweat // [1F605]
  933. 😆 grinning squinting face // [1F606]
  934. 😇 smiling face with halo // [1F607]
  935. 😈 smiling face with horns // [1F608]
  936. 😉 winking face // [1F609]
  937. 😊 smiling face with smiling eyes // [1F60A]
  938. 😋 face savoring food // [1F60B]
  939. 😌 relieved face // [1F60C]
  940. 😍 smiling face with heart eyes // [1F60D]
  941. 😎 smiling face with sunglasses // [1F60E]
  942. 😏 smirking face // [1F60F]
  943. 😐 neutral face // [1F610]
  944. 😑 expressionless face // [1F611]
  945. 😒 unamused face // [1F612]
  946. 😓 downcast face with sweat // [1F613]
  947. 😔 pensive face // [1F614]
  948. 😕 confused face // [1F615]
  949. 😖 confounded face // [1F616]
  950. 😗 kissing face // [1F617]
  951. 😘 face blowing a kiss // [1F618]
  952. 😙 kissing face with smiling eyes // [1F619]
  953. 😚 kissing face with closed eyes // [1F61A]
  954. 😛 face with tongue // [1F61B]
  955. 😜 winking face with tongue // [1F61C]
  956. 😝 squinting face with tongue // [1F61D]
  957. 😞 disappointed face // [1F61E]
  958. 😟 worried face // [1F61F]
  959. 😠 angry face // [1F620]
  960. 😡 pouting face // [1F621]
  961. 😢 crying face // [1F622]
  962. 😣 persevering face // [1F623]
  963. 😤 face with steam from nose // [1F624]
  964. 😥 sad but relieved face // [1F625]
  965. 😦 frowning face with open mouth // [1F626]
  966. 😧 anguished face // [1F627]
  967. 😨 fearful face // [1F628]
  968. 😩 weary face // [1F629]
  969. 😪 sleepy face // [1F62A]
  970. 😫 tired face // [1F62B]
  971. 😬 grimacing face // [1F62C]
  972. 😭 loudly crying face // [1F62D]
  973. 😮 face with open mouth // [1F62E]
  974. 😯 hushed face // [1F62F]
  975. 😰 anxious face with sweat // [1F630]
  976. 😱 face screaming in fear // [1F631]
  977. 😲 astonished face // [1F632]
  978. 😳 flushed face // [1F633]
  979. 😴 sleeping face // [1F634]
  980. 😵 dizzy face // [1F635]
  981. 😶 face without mouth // [1F636]
  982. 😷 face with medical mask // [1F637]
  983. 😸 grinning cat face with smiling eyes // [1F638]
  984. 😹 cat face with tears of joy // [1F639]
  985. 😺 grinning cat face // [1F63A]
  986. 😻 smiling cat face with heart eyes // [1F63B]
  987. 😼 cat face with wry smile // [1F63C]
  988. 😽 kissing cat face // [1F63D]
  989. 😾 pouting cat face // [1F63E]
  990. 😿 crying cat face // [1F63F]
  991. 🙀 weary cat face // [1F640]
  992. 🙁 slightly frowning face // [1F641]
  993. 🙂 slightly smiling face // [1F642]
  994. 🙃 upside down face // [1F643]
  995. 🙄 face with rolling eyes // [1F644]
  996. 🙅 person gesturing no // [1F645]
  997. 🙆 person gesturing ok // [1F646]
  998. 🙇 person bowing // [1F647]
  999. 🙈 see no evil monkey // [1F648]
  1000. 🙉 hear no evil monkey // [1F649]
  1001. 🙊 speak no evil monkey // [1F64A]
  1002. 🙋 person raising hand // [1F64B]
  1003. 🙌 raising hands // [1F64C]
  1004. 🙍 person frowning // [1F64D]
  1005. 🙎 person pouting // [1F64E]
  1006. 🙏 folded hands // [1F64F]
  1007. // 1F680..1F6FF : Transport and Map Symbols
  1008. 🚀 rocket // [1F680]
  1009. 🚁 helicopter // [1F681]
  1010. 🚂 locomotive // [1F682]
  1011. 🚃 railway car // [1F683]
  1012. 🚄 high speed train // [1F684]
  1013. 🚅 bullet train // [1F685]
  1014. 🚆 train // [1F686]
  1015. 🚇 metro // [1F687]
  1016. 🚈 light rail // [1F688]
  1017. 🚉 station // [1F689]
  1018. 🚊 tram // [1F68A]
  1019. 🚋 tram car // [1F68B]
  1020. 🚌 bus // [1F68C]
  1021. 🚍 oncoming bus // [1F68D]
  1022. 🚎 trolleybus // [1F68E]
  1023. 🚏 bus stop // [1F68F]
  1024. 🚐 minibus // [1F690]
  1025. 🚑 ambulance // [1F691]
  1026. 🚒 fire engine // [1F692]
  1027. 🚓 police car // [1F693]
  1028. 🚔 oncoming police car // [1F694]
  1029. 🚕 taxi // [1F695]
  1030. 🚖 oncoming taxi // [1F696]
  1031. 🚗 automobile // [1F697]
  1032. 🚘 oncoming automobile // [1F698]
  1033. 🚙 sport utility vehicle // [1F699]
  1034. 🚚 delivery truck // [1F69A]
  1035. 🚛 articulated lorry // [1F69B]
  1036. 🚜 tractor // [1F69C]
  1037. 🚝 monorail // [1F69D]
  1038. 🚞 mountain railway // [1F69E]
  1039. 🚟 suspension railway // [1F69F]
  1040. 🚠 mountain cableway // [1F6A0]
  1041. 🚡 aerial tramway // [1F6A1]
  1042. 🚢 ship // [1F6A2]
  1043. 🚣 person rowing boat // [1F6A3]
  1044. 🚤 speedboat // [1F6A4]
  1045. 🚥 horizontal traffic light // [1F6A5]
  1046. 🚦 vertical traffic light // [1F6A6]
  1047. 🚧 construction // [1F6A7]
  1048. 🚨 police car light // [1F6A8]
  1049. 🚩 triangular flag // [1F6A9]
  1050. 🚪 door // [1F6AA]
  1051. 🚫 prohibited // [1F6AB]
  1052. 🚬 cigarette // [1F6AC]
  1053. 🚭 no smoking // [1F6AD]
  1054. 🚮 litter in bin sign // [1F6AE]
  1055. 🚯 no littering // [1F6AF]
  1056. 🚰 potable water // [1F6B0]
  1057. 🚱 non potable water // [1F6B1]
  1058. 🚲 bicycle // [1F6B2]
  1059. 🚳 no bicycles // [1F6B3]
  1060. 🚴 person biking // [1F6B4]
  1061. 🚵 person mountain biking // [1F6B5]
  1062. 🚶 person walking // [1F6B6]
  1063. 🚷 no pedestrians // [1F6B7]
  1064. 🚸 children crossing // [1F6B8]
  1065. 🚹 men's room // [1F6B9]
  1066. 🚺 women's room // [1F6BA]
  1067. 🚻 restroom // [1F6BB]
  1068. 🚼 baby symbol // [1F6BC]
  1069. 🚽 toilet // [1F6BD]
  1070. 🚾 water closet // [1F6BE]
  1071. 🚿 shower // [1F6BF]
  1072. 🛀 person taking bath // [1F6C0]
  1073. 🛁 bathtub // [1F6C1]
  1074. 🛂 passport control // [1F6C2]
  1075. 🛃 customs // [1F6C3]
  1076. 🛄 baggage claim // [1F6C4]
  1077. 🛅 left luggage // [1F6C5]
  1078. 🛋 couch and lamp // [1F6CB] text|emoji
  1079. 🛌 person in bed // [1F6CC]
  1080. 🛍 shopping bags // [1F6CD] text|emoji
  1081. 🛎 bellhop bell // [1F6CE] text|emoji
  1082. 🛏 bed // [1F6CF] text|emoji
  1083. 🛐 place of worship // [1F6D0]
  1084. 🛑 stop sign // [1F6D1]
  1085. 🛒 shopping cart // [1F6D2]
  1086. 🛠 hammer and wrench // [1F6E0] text|emoji
  1087. 🛡 shield // [1F6E1] text|emoji
  1088. 🛢 oil drum // [1F6E2] text|emoji
  1089. 🛣 motorway // [1F6E3] text|emoji
  1090. 🛤 railway track // [1F6E4] text|emoji
  1091. 🛥 motor boat // [1F6E5] text|emoji
  1092. 🛩 small airplane // [1F6E9] text|emoji
  1093. 🛫 airplane departure // [1F6EB]
  1094. 🛬 airplane arrival // [1F6EC]
  1095. 🛰 satellite // [1F6F0] text|emoji
  1096. 🛳 passenger ship // [1F6F3] text|emoji
  1097. 🛴 kick scooter // [1F6F4]
  1098. 🛵 motor scooter // [1F6F5]
  1099. 🛶 canoe // [1F6F6]
  1100. 🛷 sled // [1F6F7]
  1101. 🛸 flying saucer // [1F6F8]
  1102. 🛹 skateboard // [1F6F9]
  1103. // 1F900..1F9FF : Supplemental Symbols and Pictographs
  1104. 🤐 zipper mouth face // [1F910]
  1105. 🤑 money mouth face // [1F911]
  1106. 🤒 face with thermometer // [1F912]
  1107. 🤓 nerd face // [1F913]
  1108. 🤔 thinking face // [1F914]
  1109. 🤕 face with head bandage // [1F915]
  1110. 🤖 robot face // [1F916]
  1111. 🤗 hugging face // [1F917]
  1112. 🤘 sign of the horns // [1F918]
  1113. 🤙 call me hand // [1F919]
  1114. 🤚 raised back of hand // [1F91A]
  1115. 🤛 left facing fist // [1F91B]
  1116. 🤜 right facing fist // [1F91C]
  1117. 🤝 handshake // [1F91D]
  1118. 🤞 crossed fingers // [1F91E]
  1119. 🤟 love you gesture // [1F91F]
  1120. 🤠 cowboy hat face // [1F920]
  1121. 🤡 clown face // [1F921]
  1122. 🤢 nauseated face // [1F922]
  1123. 🤣 rolling on the floor laughing // [1F923]
  1124. 🤤 drooling face // [1F924]
  1125. 🤥 lying face // [1F925]
  1126. 🤦 person facepalming // [1F926]
  1127. 🤧 sneezing face // [1F927]
  1128. 🤨 face with raised eyebrow // [1F928]
  1129. 🤩 star struck // [1F929]
  1130. 🤪 zany face // [1F92A]
  1131. 🤫 shushing face // [1F92B]
  1132. 🤬 face with symbols on mouth // [1F92C]
  1133. 🤭 face with hand over mouth // [1F92D]
  1134. 🤮 face vomiting // [1F92E]
  1135. 🤯 exploding head // [1F92F]
  1136. 🤰 pregnant woman // [1F930]
  1137. 🤱 breast feeding // [1F931]
  1138. 🤲 palms up together // [1F932]
  1139. 🤳 selfie // [1F933]
  1140. 🤴 prince // [1F934]
  1141. 🤵 man in tuxedo // [1F935]
  1142. 🤶 misses claus // [1F936]
  1143. 🤷 person shrugging // [1F937]
  1144. 🤸 person cartwheeling // [1F938]
  1145. 🤹 person juggling // [1F939]
  1146. 🤺 person fencing // [1F93A]
  1147. 🤼 people wrestling // [1F93C]
  1148. 🤽 person playing water polo // [1F93D]
  1149. 🤾 person playing handball // [1F93E]
  1150. 🥀 wilted flower // [1F940]
  1151. 🥁 drum // [1F941]
  1152. 🥂 clinking glasses // [1F942]
  1153. 🥃 tumbler glass // [1F943]
  1154. 🥄 spoon // [1F944]
  1155. 🥅 goal net // [1F945]
  1156. 🥇 first place medal // [1F947]
  1157. 🥈 second place medal // [1F948]
  1158. 🥉 third place medal // [1F949]
  1159. 🥊 boxing glove // [1F94A]
  1160. 🥋 martial arts uniform // [1F94B]
  1161. 🥌 curling stone // [1F94C]
  1162. 🥎 softball // [1F94E]
  1163. 🥏 flying disc // [1F94F]
  1164. 🥐 croissant // [1F950]
  1165. 🥑 avocado // [1F951]
  1166. 🥒 cucumber // [1F952]
  1167. 🥓 bacon // [1F953]
  1168. 🥔 potato // [1F954]
  1169. 🥕 carrot // [1F955]
  1170. 🥖 baguette bread // [1F956]
  1171. 🥗 green salad // [1F957]
  1172. 🥘 shallow pan of food // [1F958]
  1173. 🥙 stuffed flatbread // [1F959]
  1174. 🥚 egg // [1F95A]
  1175. 🥛 glass of milk // [1F95B]
  1176. 🥜 peanuts // [1F95C]
  1177. 🥝 kiwi fruit // [1F95D]
  1178. 🥞 pancakes // [1F95E]
  1179. 🥟 dumpling // [1F95F]
  1180. 🥠 fortune cookie // [1F960]
  1181. 🥡 takeout box // [1F961]
  1182. 🥢 chopsticks // [1F962]
  1183. 🥣 bowl with spoon // [1F963]
  1184. 🥤 cup with straw // [1F964]
  1185. 🥥 coconut // [1F965]
  1186. 🥦 broccoli // [1F966]
  1187. 🥧 pie // [1F967]
  1188. 🥨 pretzel // [1F968]
  1189. 🥩 cut of meat // [1F969]
  1190. 🥪 sandwich // [1F96A]
  1191. 🥫 canned food // [1F96B]
  1192. 🥬 leafy green // [1F96C]
  1193. 🥭 mango // [1F96D]
  1194. 🥮 moon cake // [1F96E]
  1195. 🥯 bagel // [1F96F]
  1196. 🥰 smiling face with 3 hearts // [1F970]
  1197. 🥳 partying face // [1F973]
  1198. 🥴 woozy face // [1F974]
  1199. 🥵 hot face // [1F975]
  1200. 🥶 cold face // [1F976]
  1201. 🥺 pleading face // [1F97A]
  1202. 🥼 lab coat // [1F97C]
  1203. 🥽 goggles // [1F97D]
  1204. 🥾 hiking boot // [1F97E]
  1205. 🥿 woman’s flat shoe // [1F97F]
  1206. 🦀 crab // [1F980]
  1207. 🦁 lion face // [1F981]
  1208. 🦂 scorpion // [1F982]
  1209. 🦃 turkey // [1F983]
  1210. 🦄 unicorn face // [1F984]
  1211. 🦅 eagle // [1F985]
  1212. 🦆 duck // [1F986]
  1213. 🦇 bat // [1F987]
  1214. 🦈 shark // [1F988]
  1215. 🦉 owl // [1F989]
  1216. 🦊 fox face // [1F98A]
  1217. 🦋 butterfly // [1F98B]
  1218. 🦌 deer // [1F98C]
  1219. 🦍 gorilla // [1F98D]
  1220. 🦎 lizard // [1F98E]
  1221. 🦏 rhinoceros // [1F98F]
  1222. 🦐 shrimp // [1F990]
  1223. 🦑 squid // [1F991]
  1224. 🦒 giraffe // [1F992]
  1225. 🦓 zebra // [1F993]
  1226. 🦔 hedgehog // [1F994]
  1227. 🦕 sauropod // [1F995]
  1228. 🦖 t rex // [1F996]
  1229. 🦗 cricket // [1F997]
  1230. 🦘 kangaroo // [1F998]
  1231. 🦙 llama // [1F999]
  1232. 🦚 peacock // [1F99A]
  1233. 🦛 hippopotamus // [1F99B]
  1234. 🦜 parrot // [1F99C]
  1235. 🦝 raccoon // [1F99D]
  1236. 🦞 lobster // [1F99E]
  1237. 🦟 mosquito // [1F99F]
  1238. 🦠 microbe // [1F9A0]
  1239. 🦡 badger // [1F9A1]
  1240. 🦢 swan // [1F9A2]
  1241. 🦰 red haired // [1F9B0]
  1242. 🦱 curly haired // [1F9B1]
  1243. 🦲 bald // [1F9B2]
  1244. 🦳 white haired // [1F9B3]
  1245. 🦴 bone // [1F9B4]
  1246. 🦵 leg // [1F9B5]
  1247. 🦶 foot // [1F9B6]
  1248. 🦷 tooth // [1F9B7]
  1249. 🦸 superhero // [1F9B8]
  1250. 🦹 supervillain // [1F9B9]
  1251. 🧀 cheese wedge // [1F9C0]
  1252. 🧁 cupcake // [1F9C1]
  1253. 🧂 salt // [1F9C2]
  1254. 🧐 face with monocle // [1F9D0]
  1255. 🧑 adult // [1F9D1]
  1256. 🧒 child // [1F9D2]
  1257. 🧓 older adult // [1F9D3]
  1258. 🧔 bearded person // [1F9D4]
  1259. 🧕 woman with headscarf // [1F9D5]
  1260. 🧖 person in steamy room // [1F9D6]
  1261. 🧗 person climbing // [1F9D7]
  1262. 🧘 person in lotus position // [1F9D8]
  1263. 🧙 mage // [1F9D9]
  1264. 🧚 fairy // [1F9DA]
  1265. 🧛 vampire // [1F9DB]
  1266. 🧜 merperson // [1F9DC]
  1267. 🧝 elf // [1F9DD]
  1268. 🧞 genie // [1F9DE]
  1269. 🧟 zombie // [1F9DF]
  1270. 🧠 brain // [1F9E0]
  1271. 🧡 orange heart // [1F9E1]
  1272. 🧢 billed cap // [1F9E2]
  1273. 🧣 scarf // [1F9E3]
  1274. 🧤 gloves // [1F9E4]
  1275. 🧥 coat // [1F9E5]
  1276. 🧦 socks // [1F9E6]
  1277. 🧧 red envelope // [1F9E7]
  1278. 🧨 firecracker // [1F9E8]
  1279. 🧩 jigsaw // [1F9E9]
  1280. 🧪 test tube // [1F9EA]
  1281. 🧫 petri dish // [1F9EB]
  1282. 🧬 dna // [1F9EC]
  1283. 🧭 compass // [1F9ED]
  1284. 🧮 abacus // [1F9EE]
  1285. 🧰 toolbox // [1F9F0]
  1286. 🧱 bricks // [1F9F1]
  1287. 🧲 magnet // [1F9F2]
  1288. 🧳 luggage // [1F9F3]
  1289. 🧴 lotion bottle // [1F9F4]
  1290. 🧵 thread // [1F9F5]
  1291. 🧶 yarn // [1F9F6]
  1292. 🧷 safety pin // [1F9F7]
  1293. 🧸 teddy bear // [1F9F8]
  1294. 🧹 broom // [1F9F9]
  1295. 🧺 basket // [1F9FA]
  1296. 🧻 roll of paper // [1F9FB]
  1297. 🧼 soap // [1F9FC]
  1298. 🧽 sponge // [1F9FD]
  1299. 🧾 receipt // [1F9FE]
  1300. 🧿 nazar amulet // [1F9FF]
  1301. // Country Flags (Regional Indicator Symbols) -- ISO 3166-1 Country Codes
  1302. 🇦🇨 ascension island // [1F1E6 1F1E8] AC
  1303. 🇦🇩 andorra // [1F1E6 1F1E9] AD
  1304. 🇦🇪 united arab emirates // [1F1E6 1F1EA] AE
  1305. 🇦🇫 afghanistan // [1F1E6 1F1EB] AF
  1306. 🇦🇬 antigua and barbuda // [1F1E6 1F1EC] AG
  1307. 🇦🇮 anguilla // [1F1E6 1F1EE] AI
  1308. 🇦🇱 albania // [1F1E6 1F1F1] AL
  1309. 🇦🇲 armenia // [1F1E6 1F1F2] AM
  1310. 🇦🇴 angola // [1F1E6 1F1F4] AO
  1311. 🇦🇶 antarctica // [1F1E6 1F1F6] AQ
  1312. 🇦🇷 argentina // [1F1E6 1F1F7] AR
  1313. 🇦🇸 american samoa // [1F1E6 1F1F8] AS
  1314. 🇦🇹 austria // [1F1E6 1F1F9] AT
  1315. 🇦🇺 australia // [1F1E6 1F1FA] AU
  1316. 🇦🇼 aruba // [1F1E6 1F1FC] AW
  1317. 🇦🇽 åland islands // [1F1E6 1F1FD] AX
  1318. 🇦🇿 azerbaijan // [1F1E6 1F1FF] AZ
  1319. 🇧🇦 bosnia and herzegovina // [1F1E7 1F1E6] BA
  1320. 🇧🇧 barbados // [1F1E7 1F1E7] BB
  1321. 🇧🇩 bangladesh // [1F1E7 1F1E9] BD
  1322. 🇧🇪 belgium // [1F1E7 1F1EA] BE
  1323. 🇧🇫 burkina faso // [1F1E7 1F1EB] BF
  1324. 🇧🇬 bulgaria // [1F1E7 1F1EC] BG
  1325. 🇧🇭 bahrain // [1F1E7 1F1ED] BH
  1326. 🇧🇮 burundi // [1F1E7 1F1EE] BI
  1327. 🇧🇯 benin // [1F1E7 1F1EF] BJ
  1328. 🇧🇱 saint barthélemy // [1F1E7 1F1F1] BL
  1329. 🇧🇲 bermuda // [1F1E7 1F1F2] BM
  1330. 🇧🇳 brunei // [1F1E7 1F1F3] BN
  1331. 🇧🇴 bolivia // [1F1E7 1F1F4] BO
  1332. 🇧🇶 caribbean netherlands // [1F1E7 1F1F6] BQ
  1333. 🇧🇷 brazil // [1F1E7 1F1F7] BR
  1334. 🇧🇸 bahamas // [1F1E7 1F1F8] BS
  1335. 🇧🇹 bhutan // [1F1E7 1F1F9] BT
  1336. 🇧🇻 bouvet Island // [1F1E7 1F1FB] BV
  1337. 🇧🇼 botswana // [1F1E7 1F1FC] BW
  1338. 🇧🇾 belarus // [1F1E7 1F1FE] BY
  1339. 🇧🇿 belize // [1F1E7 1F1FF] BZ
  1340. 🇨🇦 canada // [1F1E8 1F1E6] CA
  1341. 🇨🇨 cocos (keeling) islands // [1F1E8 1F1E8] CC
  1342. 🇨🇩 congo - kinshasa // [1F1E8 1F1E9] CD
  1343. 🇨🇫 central african republic // [1F1E8 1F1EB] CF
  1344. 🇨🇬 congo - brazzaville // [1F1E8 1F1EC] CG
  1345. 🇨🇭 switzerland // [1F1E8 1F1ED] CH
  1346. 🇨🇮 côte d'ivoire // [1F1E8 1F1EE] CI
  1347. 🇨🇰 cook islands // [1F1E8 1F1F0] CK
  1348. 🇨🇱 chile // [1F1E8 1F1F1] CL
  1349. 🇨🇲 cameroon // [1F1E8 1F1F2] CM
  1350. 🇨🇳 china // [1F1E8 1F1F3] CN
  1351. 🇨🇴 colombia // [1F1E8 1F1F4] CO
  1352. 🇨🇵 clipperton island // [1F1E8 1F1F5] CP
  1353. 🇨🇷 costa rica // [1F1E8 1F1F7] CR
  1354. 🇨🇺 cuba // [1F1E8 1F1FA] CU
  1355. 🇨🇻 cape verde // [1F1E8 1F1FB] CV
  1356. 🇨🇼 curaçao // [1F1E8 1F1FC] CW
  1357. 🇨🇽 christmas island // [1F1E8 1F1FD] CX
  1358. 🇨🇾 cyprus // [1F1E8 1F1FE] CY
  1359. 🇨🇿 czechia // [1F1E8 1F1FF] CZ
  1360. 🇩🇪 germany // [1F1E9 1F1EA] DE
  1361. 🇩🇬 diego garcia // [1F1E9 1F1EC] DG
  1362. 🇩🇯 djibouti // [1F1E9 1F1EF] DJ
  1363. 🇩🇰 denmark // [1F1E9 1F1F0] DK
  1364. 🇩🇲 dominica // [1F1E9 1F1F2] DM
  1365. 🇩🇴 dominican republic // [1F1E9 1F1F4] DO
  1366. 🇩🇿 algeria // [1F1E9 1F1FF] DZ
  1367. 🇪🇦 ceuta and melilla // [1F1EA 1F1E6] EA
  1368. 🇪🇨 ecuador // [1F1EA 1F1E8] EC
  1369. 🇪🇪 estonia // [1F1EA 1F1EA] EE
  1370. 🇪🇬 egypt // [1F1EA 1F1EC] EG
  1371. 🇪🇭 western sahara // [1F1EA 1F1ED] EH
  1372. 🇪🇷 eritrea // [1F1EA 1F1F7] ER
  1373. 🇪🇸 spain // [1F1EA 1F1F8] ES
  1374. 🇪🇹 ethiopia // [1F1EA 1F1F9] ET
  1375. 🇪🇺 european union // [1F1EA 1F1FA] EU
  1376. 🇫🇮 finland // [1F1EB 1F1EE] FI
  1377. 🇫🇯 fiji // [1F1EB 1F1EF] FJ
  1378. 🇫🇰 falkland islands // [1F1EB 1F1F0] FI
  1379. 🇫🇲 micronesia // [1F1EB 1F1F2] FM
  1380. 🇫🇴 faroe islands // [1F1EB 1F1F4] FO
  1381. 🇫🇷 france // [1F1EB 1F1F7] FR
  1382. 🇬🇦 gabon // [1F1EC 1F1E6] GA
  1383. 🇬🇧 united kingdom // [1F1EC 1F1E7] GB
  1384. 🇬🇩 grenada // [1F1EC 1F1E9] GD
  1385. 🇬🇪 georgia // [1F1EC 1F1EA] GE
  1386. 🇬🇫 french guiana // [1F1EC 1F1EB] GF
  1387. 🇬🇬 guernsey // [1F1EC 1F1EC] GG
  1388. 🇬🇭 ghana // [1F1EC 1F1ED] GH
  1389. 🇬🇮 gibraltar // [1F1EC 1F1EE] GI
  1390. 🇬🇱 greenland // [1F1EC 1F1F1] GL
  1391. 🇬🇲 gambia // [1F1EC 1F1F2] GM
  1392. 🇬🇳 guinea // [1F1EC 1F1F3] GN
  1393. 🇬🇵 guadeloupe // [1F1EC 1F1F5] GP
  1394. 🇬🇶 equatorial guinea // [1F1EC 1F1F6] GQ
  1395. 🇬🇷 greece // [1F1EC 1F1F7] GR
  1396. 🇬🇸 south georgia and south sandwich islands // [1F1EC 1F1F8] GS
  1397. 🇬🇹 guatemala // [1F1EC 1F1F9] GT
  1398. 🇬🇺 guam // [1F1EC 1F1FA] GU
  1399. 🇬🇼 guinea bissau // [1F1EC 1F1FC] GW
  1400. 🇬🇾 guyana // [1F1EC 1F1FE] GY
  1401. 🇭🇰 hong kong SAR china // [1F1ED 1F1F0] HK
  1402. 🇭🇲 heard and mcdonald islands // [1F1ED 1F1F2] HM
  1403. 🇭🇳 honduras // [1F1ED 1F1F3] HN
  1404. 🇭🇷 croatia // [1F1ED 1F1F7] HR
  1405. 🇭🇹 haiti // [1F1ED 1F1F9] HT
  1406. 🇭🇺 hungary // [1F1ED 1F1FA] HU
  1407. 🇮🇨 canary islands // [1F1EE 1F1E8] IC
  1408. 🇮🇩 indonesia // [1F1EE 1F1E9] ID
  1409. 🇮🇪 ireland // [1F1EE 1F1EA] IE
  1410. 🇮🇱 israel // [1F1EE 1F1F1] IL
  1411. 🇮🇲 isle of man // [1F1EE 1F1F2] IM
  1412. 🇮🇳 india // [1F1EE 1F1F3] IN
  1413. 🇮🇴 british indian ocean territory // [1F1EE 1F1F4] IO
  1414. 🇮🇶 iraq // [1F1EE 1F1F6] IQ
  1415. 🇮🇷 iran // [1F1EE 1F1F7] IR
  1416. 🇮🇸 iceland // [1F1EE 1F1F8] IS
  1417. 🇮🇹 italy // [1F1EE 1F1F9] IT
  1418. 🇯🇪 jersey // [1F1EF 1F1EA] JE
  1419. 🇯🇲 jamaica // [1F1EF 1F1F2] JM
  1420. 🇯🇴 jordan // [1F1EF 1F1F4] JO
  1421. 🇯🇵 japan // [1F1EF 1F1F5] JP
  1422. 🇰🇪 kenya // [1F1F0 1F1EA] KE
  1423. 🇰🇬 kyrgyzstan // [1F1F0 1F1EC] KG
  1424. 🇰🇭 cambodia // [1F1F0 1F1ED] KH
  1425. 🇰🇮 kiribati // [1F1F0 1F1EE] KI
  1426. 🇰🇲 comoros // [1F1F0 1F1F2] KM
  1427. 🇰🇳 saint kitts and nevis // [1F1F0 1F1F3] KN
  1428. 🇰🇵 north korea // [1F1F0 1F1F5] KP
  1429. 🇰🇷 south korea // [1F1F0 1F1F7] KR
  1430. 🇰🇼 kuwait // [1F1F0 1F1FC] KW
  1431. 🇰🇾 cayman islands // [1F1F0 1F1FE] KY
  1432. 🇰🇿 kazakhstan // [1F1F0 1F1FF] KZ
  1433. 🇱🇦 laos // [1F1F1 1F1E6] LA
  1434. 🇱🇧 lebanon // [1F1F1 1F1E7] LB
  1435. 🇱🇨 saint lucia // [1F1F1 1F1E8] LC
  1436. 🇱🇮 liechtenstein // [1F1F1 1F1EE] LI
  1437. 🇱🇰 sri lanka // [1F1F1 1F1F0] LK
  1438. 🇱🇷 liberia // [1F1F1 1F1F7] LR
  1439. 🇱🇸 lesotho // [1F1F1 1F1F8] LS
  1440. 🇱🇹 lithuania // [1F1F1 1F1F9] LT
  1441. 🇱🇺 luxembourg // [1F1F1 1F1FA] LU
  1442. 🇱🇻 latvia // [1F1F1 1F1FB] LV
  1443. 🇱🇾 libya // [1F1F1 1F1FE] LY
  1444. 🇲🇦 morocco // [1F1F2 1F1E6] MA
  1445. 🇲🇨 monaco // [1F1F2 1F1E8] MC
  1446. 🇲🇩 moldova // [1F1F2 1F1E9] MD
  1447. 🇲🇪 montenegro // [1F1F2 1F1EA] ME
  1448. 🇲🇫 saint martin // [1F1F2 1F1EB] MF
  1449. 🇲🇬 madagascar // [1F1F2 1F1EC] MG
  1450. 🇲🇭 marshall islands // [1F1F2 1F1ED] MH
  1451. 🇲🇰 macedonia // [1F1F2 1F1F0] MK
  1452. 🇲🇱 mali // [1F1F2 1F1F1] ML
  1453. 🇲🇲 myanmar (burma) // [1F1F2 1F1F2] MM
  1454. 🇲🇳 mongolia // [1F1F2 1F1F3] MN
  1455. 🇲🇴 macau SAR china // [1F1F2 1F1F4] MO
  1456. 🇲🇵 northern mariana islands // [1F1F2 1F1F5] MP
  1457. 🇲🇶 martinique // [1F1F2 1F1F6] MQ
  1458. 🇲🇷 mauritania // [1F1F2 1F1F7] MR
  1459. 🇲🇸 montserrat // [1F1F2 1F1F8] MS
  1460. 🇲🇹 malta // [1F1F2 1F1F9] MT
  1461. 🇲🇺 mauritius // [1F1F2 1F1FA] MU
  1462. 🇲🇻 maldives // [1F1F2 1F1FB] MV
  1463. 🇲🇼 malawi // [1F1F2 1F1FC] MW
  1464. 🇲🇽 mexico // [1F1F2 1F1FD] MX
  1465. 🇲🇾 malaysia // [1F1F2 1F1FE] MY
  1466. 🇲🇿 mozambique // [1F1F2 1F1FF] MZ
  1467. 🇳🇦 namibia // [1F1F3 1F1E6] NA
  1468. 🇳🇨 new caledonia // [1F1F3 1F1E8] NC
  1469. 🇳🇪 niger // [1F1F3 1F1EA] NE
  1470. 🇳🇫 norfolk island // [1F1F3 1F1EB] NF
  1471. 🇳🇬 nigeria // [1F1F3 1F1EC] NG
  1472. 🇳🇮 nicaragua // [1F1F3 1F1EE] NI
  1473. 🇳🇱 netherlands // [1F1F3 1F1F1] NL
  1474. 🇳🇴 norway // [1F1F3 1F1F4] NO
  1475. 🇳🇵 nepal // [1F1F3 1F1F5] NP
  1476. 🇳🇷 nauru // [1F1F3 1F1F7] NR
  1477. 🇳🇺 niue // [1F1F3 1F1FA] NU
  1478. 🇳🇿 new zealand // [1F1F3 1F1FF] NZ
  1479. 🇴🇲 oman // [1F1F4 1F1F2] OM
  1480. 🇵🇦 panama // [1F1F5 1F1E6] PA
  1481. 🇵🇪 peru // [1F1F5 1F1EA] PE
  1482. 🇵🇫 french polynesia // [1F1F5 1F1EB] PF
  1483. 🇵🇬 papua new guinea // [1F1F5 1F1EC] PG
  1484. 🇵🇭 philippines // [1F1F5 1F1ED] PH
  1485. 🇵🇰 pakistan // [1F1F5 1F1F0] PK
  1486. 🇵🇱 poland // [1F1F5 1F1F1] PL
  1487. 🇵🇲 saint pierre and miquelon // [1F1F5 1F1F2] PM
  1488. 🇵🇳 pitcairn islands // [1F1F5 1F1F3] PN
  1489. 🇵🇷 puerto rico // [1F1F5 1F1F7] PR
  1490. 🇵🇸 palestinian territories // [1F1F5 1F1F8] PS
  1491. 🇵🇹 portugal // [1F1F5 1F1F9] PT
  1492. 🇵🇼 palau // [1F1F5 1F1FC] PW
  1493. 🇵🇾 paraguay // [1F1F5 1F1FE] PY
  1494. 🇶🇦 qatar // [1F1F6 1F1E6] QA
  1495. 🇷🇪 réunion // [1F1F7 1F1EA] RE
  1496. 🇷🇴 romania // [1F1F7 1F1F4] RO
  1497. 🇷🇸 serbia // [1F1F7 1F1F8] RS
  1498. 🇷🇺 russia // [1F1F7 1F1FA] RU
  1499. 🇷🇼 rwanda // [1F1F7 1F1FC] RW
  1500. 🇸🇦 saudi arabia // [1F1F8 1F1E6] SA
  1501. 🇸🇧 solomon islands // [1F1F8 1F1E7] SB
  1502. 🇸🇨 seychelles // [1F1F8 1F1E8] SC
  1503. 🇸🇩 sudan // [1F1F8 1F1E9] SD
  1504. 🇸🇪 sweden // [1F1F8 1F1EA] SE
  1505. 🇸🇬 singapore // [1F1F8 1F1EC] SG
  1506. 🇸🇭 saint helena // [1F1F8 1F1ED] SH
  1507. 🇸🇮 slovenia // [1F1F8 1F1EE] SI
  1508. 🇸🇯 svalbard and jan mayen // [1F1F8 1F1EF] SJ
  1509. 🇸🇰 slovakia // [1F1F8 1F1F0] SK
  1510. 🇸🇱 sierra leone // [1F1F8 1F1F1] SL
  1511. 🇸🇲 san marino // [1F1F8 1F1F2] SM
  1512. 🇸🇳 senegal // [1F1F8 1F1F3] SN
  1513. 🇸🇴 somalia // [1F1F8 1F1F4] SO
  1514. 🇸🇷 suriname // [1F1F8 1F1F7] SR
  1515. 🇸🇸 south sudan // [1F1F8 1F1F8] SS
  1516. 🇸🇹 são tomé and príncipe // [1F1F8 1F1F9] ST
  1517. 🇸🇻 el salvador // [1F1F8 1F1FB] SV
  1518. 🇸🇽 sint maarten // [1F1F8 1F1FD] SX
  1519. 🇸🇾 syria // [1F1F8 1F1FE] SY
  1520. 🇸🇿 swaziland // [1F1F8 1F1FF] SZ
  1521. 🇹🇦 tristan da cunha // [1F1F9 1F1E6] TA
  1522. 🇹🇨 turks and caicos islands // [1F1F9 1F1E8] TC
  1523. 🇹🇩 chad // [1F1F9 1F1E9] TD
  1524. 🇹🇫 french southern territories // [1F1F9 1F1EB] TF
  1525. 🇹🇬 togo // [1F1F9 1F1EC] TG
  1526. 🇹🇭 thailand // [1F1F9 1F1ED] TH
  1527. 🇹🇯 tajikistan // [1F1F9 1F1EF] TJ
  1528. 🇹🇰 tokelau // [1F1F9 1F1F0] TK
  1529. 🇹🇱 timor leste // [1F1F9 1F1F1] TL
  1530. 🇹🇲 turkmenistan // [1F1F9 1F1F2] TM
  1531. 🇹🇳 tunisia // [1F1F9 1F1F3] TN
  1532. 🇹🇴 tonga // [1F1F9 1F1F4] TO
  1533. 🇹🇷 turkey // [1F1F9 1F1F7] TR
  1534. 🇹🇹 trinidad and tobago // [1F1F9 1F1F9] TT
  1535. 🇹🇻 tuvalu // [1F1F9 1F1FB] TV
  1536. 🇹🇼 taiwan // [1F1F9 1F1FC] TW
  1537. 🇹🇿 tanzania // [1F1F9 1F1FF] TZ
  1538. 🇺🇦 ukraine // [1F1FA 1F1E6] UA
  1539. 🇺🇬 uganda // [1F1FA 1F1EC] UG
  1540. 🇺🇲 u s outlying islands // [1F1FA 1F1F2] UM
  1541. 🇺🇳 united nations // [1F1FA 1F1F3] UN
  1542. 🇺🇸 united states // [1F1FA 1F1F8] US
  1543. 🇺🇾 uruguay // [1F1FA 1F1FE] UY
  1544. 🇺🇿 uzbekistan // [1F1FA 1F1FF] UZ
  1545. 🇻🇦 vatican city // [1F1FB 1F1E6] VA
  1546. 🇻🇨 saint vincent and grenadines // [1F1FB 1F1E8] VC
  1547. 🇻🇪 venezuela // [1F1FB 1F1EA] VE
  1548. 🇻🇬 british virgin islands // [1F1FB 1F1EC] VG
  1549. 🇻🇮 u s virgin islands // [1F1FB 1F1EE] VI
  1550. 🇻🇳 vietnam // [1F1FB 1F1F3] VN
  1551. 🇻🇺 vanuatu // [1F1FB 1F1FA] VU
  1552. 🇼🇫 wallis and futuna // [1F1FC 1F1EB] WF
  1553. 🇼🇸 samoa // [1F1FC 1F1F8] WS
  1554. 🇽🇰 kosovo // [1F1FD 1F1F0] XK
  1555. 🇾🇪 yemen // [1F1FE 1F1EA] YE
  1556. 🇾🇹 mayotte // [1F1FE 1F1F9] YT
  1557. 🇿🇦 south africa // [1F1FF 1F1E6] ZA
  1558. 🇿🇲 zambia // [1F1FF 1F1F2] ZM
  1559. 🇿🇼 zimbabwe // [1F1FF 1F1FC] ZW
  1560. // Subdivision Flags -- ISO 3166-2 Subdivision Codes
  1561. 🏴󠁧󠁢󠁥󠁮󠁧󠁿 england // [1F3F4 E0067 E0062 E0065 E006E E0067 E007F]
  1562. 🏴󠁧󠁢󠁳󠁣󠁴󠁿 scotland // [1F3F4 E0067 E0062 E0073 E0063 E0074 E007F]
  1563. 🏴󠁧󠁢󠁷󠁬󠁳󠁿 wales // [1F3F4 E0067 E0062 E0077 E006C E0073 E007F]
  1564. // Keycaps (NOTE: keycap 10 is a single Unicode codepoint)
  1565. #️⃣ keycap hash // [0023 FE0F 20E3]
  1566. *️⃣ keycap star // [002A FE0F 20E3]
  1567. 0️⃣ keycap zero // [0030 FE0F 20E3]
  1568. 1️⃣ keycap one // [0031 FE0F 20E3]
  1569. 2️⃣ keycap two // [0032 FE0F 20E3]
  1570. 3️⃣ keycap three // [0033 FE0F 20E3]
  1571. 4️⃣ keycap four // [0034 FE0F 20E3]
  1572. 5️⃣ keycap five // [0035 FE0F 20E3]
  1573. 6️⃣ keycap six // [0036 FE0F 20E3]
  1574. 7️⃣ keycap seven // [0037 FE0F 20E3]
  1575. 8️⃣ keycap eight // [0038 FE0F 20E3]
  1576. 9️⃣ keycap nine // [0039 FE0F 20E3]
  1577. // Emoji ZWJ Sequence: Family
  1578. 👩‍❤‍💋‍👨 kiss woman man // [1F469 200D 2764 200D 1F48B 200D 1F468]
  1579. 👨‍❤‍💋‍👨 kiss man man // [1F468 200D 2764 200D 1F48B 200D 1F468]
  1580. 👩‍❤‍💋‍👩 kiss woman woman // [1F469 200D 2764 200D 1F48B 200D 1F469]
  1581. 👩‍❤‍👨 couple with heart woman man // [1F469 200D 2764 200D 1F468]
  1582. 👨‍❤‍👨 couple with heart man man // [1F468 200D 2764 200D 1F468]
  1583. 👩‍❤‍👩 couple with heart woman woman // [1F469 200D 2764 200D 1F469]
  1584. 👨‍👩‍👦 family man woman boy // [1F468 200D 1F469 200D 1F466]
  1585. 👨‍👩‍👧 family man woman girl // [1F468 200D 1F469 200D 1F467]
  1586. 👨‍👩‍👧‍👦 family man woman girl boy // [1F468 200D 1F469 200D 1F467 200D 1F466]
  1587. 👨‍👩‍👦‍👦 family man woman boy boy // [1F468 200D 1F469 200D 1F466 200D 1F466]
  1588. 👨‍👩‍👧‍👧 family man woman girl girl // [1F468 200D 1F469 200D 1F467 200D 1F467]
  1589. 👨‍👨‍👦 family man man boy // [1F468 200D 1F468 200D 1F466]
  1590. 👨‍👨‍👧 family man man girl // [1F468 200D 1F468 200D 1F467]
  1591. 👨‍👨‍👧‍👦 family man man girl boy // [1F468 200D 1F468 200D 1F467 200D 1F466]
  1592. 👨‍👨‍👦‍👦 family man man boy boy // [1F468 200D 1F468 200D 1F466 200D 1F466]
  1593. 👨‍👨‍👧‍👧 family man man girl girl // [1F468 200D 1F468 200D 1F467 200D 1F467]
  1594. 👩‍👩‍👦 family woman woman boy // [1F469 200D 1F469 200D 1F466]
  1595. 👩‍👩‍👧 family woman woman girl // [1F469 200D 1F469 200D 1F467]
  1596. 👩‍👩‍👧‍👦 family woman woman girl boy // [1F469 200D 1F469 200D 1F467 200D 1F466]
  1597. 👩‍👩‍👦‍👦 family woman woman boy boy // [1F469 200D 1F469 200D 1F466 200D 1F466]
  1598. 👩‍👩‍👧‍👧 family woman woman girl girl // [1F469 200D 1F469 200D 1F467 200D 1F467]
  1599. 👨‍👦 family man boy // [1F468 200D 1F466]
  1600. 👨‍👦‍👦 family man boy boy // [1F468 200D 1F466 200D 1F466]
  1601. 👨‍👧 family man girl // [1F468 200D 1F467]
  1602. 👨‍👧‍👦 family man girl boy // [1F468 200D 1F467 200D 1F466]
  1603. 👨‍👧‍👧 family man girl girl // [1F468 200D 1F467 200D 1F467]
  1604. 👩‍👦 family woman boy // [1F469 200D 1F466]
  1605. 👩‍👦‍👦 family woman boy boy // [1F469 200D 1F466 200D 1F466]
  1606. 👩‍👧 family woman girl // [1F469 200D 1F467]
  1607. 👩‍👧‍👦 family woman girl boy // [1F469 200D 1F467 200D 1F466]
  1608. 👩‍👧‍👧 family woman girl girl // [1F469 200D 1F467 200D 1F467]
  1609. // Emoji ZWJ Sequence: Gendered Role, with object
  1610. 👨‍⚕ man health worker // [1F468 200D 2695]
  1611. 👩‍⚕ woman health worker // [1F469 200D 2695]
  1612. 👨‍⚖ man judge // [1F468 200D 2696]
  1613. 👩‍⚖ woman judge // [1F469 200D 2696]
  1614. 👨‍✈ man pilot // [1F468 200D 2708]
  1615. 👩‍✈ woman pilot // [1F469 200D 2708]
  1616. 👨‍🌾 man farmer // [1F468 200D 1F33E]
  1617. 👩‍🌾 woman farmer // [1F469 200D 1F33E]
  1618. 👨‍🍳 man cook // [1F468 200D 1F373]
  1619. 👩‍🍳 woman cook // [1F469 200D 1F373]
  1620. 👨‍🎓 man student // [1F468 200D 1F393]
  1621. 👩‍🎓 woman student // [1F469 200D 1F393]
  1622. 👨‍🎤 man singer // [1F468 200D 1F3A4]
  1623. 👩‍🎤 woman singer // [1F469 200D 1F3A4]
  1624. 👨‍🎨 man artist // [1F468 200D 1F3A8]
  1625. 👩‍🎨 woman artist // [1F469 200D 1F3A8]
  1626. 👨‍🏫 man teacher // [1F468 200D 1F3EB]
  1627. 👩‍🏫 woman teacher // [1F469 200D 1F3EB]
  1628. 👨‍🏭 man factory worker // [1F468 200D 1F3ED]
  1629. 👩‍🏭 woman factory worker // [1F469 200D 1F3ED]
  1630. 👨‍💻 man technologist // [1F468 200D 1F4BB]
  1631. 👩‍💻 woman technologist // [1F469 200D 1F4BB]
  1632. 👨‍💼 man office worker // [1F468 200D 1F4BC]
  1633. 👩‍💼 woman office worker // [1F469 200D 1F4BC]
  1634. 👨‍🔧 man mechanic // [1F468 200D 1F527]
  1635. 👩‍🔧 woman mechanic // [1F469 200D 1F527]
  1636. 👨‍🔬 man scientist // [1F468 200D 1F52C]
  1637. 👩‍🔬 woman scientist // [1F469 200D 1F52C]
  1638. 👨‍🚀 man astronaut // [1F468 200D 1F680]
  1639. 👩‍🚀 woman atronaut // [1F469 200D 1F680]
  1640. 👨‍🚒 man firefighter // [1F468 200D 1F692]
  1641. 👩‍🚒 woman firefighter // [1F469 200D 1F692]
  1642. // Emoji ZWJ Sequence: Gendered Role
  1643. 👮‍♀ woman police officer // [1F46E 200D 2640]
  1644. 👮‍♂ man police officer // [1F46E 200D 2642]
  1645. 👱‍♀ blond-haired woman // [1F471 200D 2640]
  1646. 👱‍♂ blond-haired man // [1F471 200D 2642]
  1647. 👳‍♀ woman wearing turban // [1F473 200D 2640]
  1648. 👳‍♂ man wearing turban // [1F473 200D 2642]
  1649. 👷‍♀ woman construction worker // [1F477 200D 2640]
  1650. 👷‍♂ man construction worker // [1F477 200D 2642]
  1651. 💂‍♀ woman guard // [1F482 200D 2640]
  1652. 💂‍♂ man guard // [1F482 200D 2642]
  1653. 🕵️‍♀ woman detective // [1F575 200D 2640]
  1654. 🕵️‍♂ man detective // [1F575 200D 2642]
  1655. 🦸‍♀ woman superhero // [1F9B8 200D 2640]
  1656. 🦸‍♂ man superhero // [1F9B8 200D 2642]
  1657. 🦹‍♀ woman supervillain // [1F9B9 200D 2640]
  1658. 🦹‍♂ man supervillain // [1F9B9 200D 2642]
  1659. 🧙‍♀ woman mage // [1F9D9 200D 2640]
  1660. 🧙‍♂ man mage // [1F9D9 200D 2642]
  1661. 🧚‍♀ woman fairy // [1F9DA 200D 2640]
  1662. 🧚‍♂ man fairy // [1F9DA 200D 2642]
  1663. 🧛‍♀ woman vampire // [1F9DB 200D 2640]
  1664. 🧛‍♂ man vampire // [1F9DB 200D 2642]
  1665. 🧜‍♀ mermaid // [1F9DC 200D 2640]
  1666. 🧜‍♂ merman // [1F9DC 200D 2642]
  1667. 🧝‍♀ woman elf // [1F9DD 200D 2640]
  1668. 🧝‍♂ man elf // [1F9DD 200D 2642]
  1669. 🧞‍♀ woman genie // [1F9DE 200D 2640]
  1670. 🧞‍♂ man genie // [1F9DE 200D 2642]
  1671. 🧟‍♀ woman zombie // [1F9DF 200D 2640]
  1672. 🧟‍♂ man zombie // [1F9DF 200D 2642]
  1673. // Emoji ZWJ Sequence: Gendered Activity
  1674. ⛹‍♀ woman bouncing ball // [26F9 200D 2640]
  1675. ⛹‍♂ man bouncing ball // [26F9 200D 2642]
  1676. 🏃‍♀ woman running // [1F3C3 200D 2640]
  1677. 🏃‍♂ man running // [1F3C3 200D 2642]
  1678. 🏄‍♀ woman surfacing // [1F3C4 200D 2640]
  1679. 🏄‍♂ man surfacing // [1F3C4 200D 2642]
  1680. 🏊‍♀ woman swimming // [1F3CA 200D 2640]
  1681. 🏊‍♂ man swimming // [1F3CA 200D 2642]
  1682. 🏋️‍♀ woman lifting weights // [1F3CB 200D 2640]
  1683. 🏋️‍♂ man lifting weights // [1F3CB 200D 2642]
  1684. 🏌️‍♀ woman golfing // [1F3CC 200D 2640]
  1685. 🏌️‍♂ man golfing // [1F3CC 200D 2642]
  1686. 👯‍♀ woman with bunny ears // [1F46F 200D 2640]
  1687. 👯‍♂ man with bunny ears // [1F46F 200D 2642]
  1688. 💆‍♀ woman getting massage // [1F486 200D 2640]
  1689. 💆‍♂ man getting massage // [1F486 200D 2642]
  1690. 💇‍♀ woman getting haircut // [1F487 200D 2640]
  1691. 💇‍♂ man getting haircut // [1F487 200D 2642]
  1692. 🚣‍♀ woman rowing boat // [1F6A3 200D 2640]
  1693. 🚣‍♂ man rowing boat // [1F6A3 200D 2642]
  1694. 🚴‍♀ woman biking // [1F6B4 200D 2640]
  1695. 🚴‍♂ man biking // [1F6B4 200D 2642]
  1696. 🚵‍♀ woman mountain biking // [1F6B5 200D 2640]
  1697. 🚵‍♂ man mountain biking // [1F6B5 200D 2642]
  1698. 🚶‍♀ woman walking // [1F6B6 200D 2640]
  1699. 🚶‍♂ man walking // [1F6B6 200D 2642]
  1700. 🤸‍♀ woman cartwheeling // [1F938 200D 2640]
  1701. 🤸‍♂ man cartwheeling // [1F938 200D 2642]
  1702. 🤹‍♀ woman juggling // [1F939 200D 2640]
  1703. 🤹‍♂ man juggling // [1F939 200D 2642]
  1704. 🤼‍♀ woman wrestling // [1F93C 200D 2640]
  1705. 🤼‍♂ man wrestling // [1F93C 200D 2642]
  1706. 🤽‍♀ woman playing water polo // [1F93D 200D 2640]
  1707. 🤽‍♂ man playing water polo // [1F93D 200D 2642]
  1708. 🤾‍♀ woman playing handball // [1F93E 200D 2640]
  1709. 🤾‍♂ man playing handball // [1F93E 200D 2642]
  1710. 🧖‍♀ woman in steamy room // [1F9D6 200D 2640]
  1711. 🧖‍♂ man in steamy room // [1F9D6 200D 2642]
  1712. 🧗‍♀ woman climbing // [1F9D7 200D 2640]
  1713. 🧗‍♂ man climbing // [1F9D7 200D 2642]
  1714. 🧘‍♀ woman in lotus position // [1F9D8 200D 2640]
  1715. 🧘‍♂ man in lotus position // [1F9D8 200D 2642]
  1716. // Emoji ZWJ Sequence: Gendered Gestures
  1717. 💁‍♀ woman tipping hand // [1F481 200D 2640]
  1718. 💁‍♂ man tipping hand // [1F481 200D 2642]
  1719. 🙅‍♀ woman gesturing no // [1F645 200D 2640]
  1720. 🙅‍♂ man gesturing no // [1F645 200D 2642]
  1721. 🙆‍♀ woman gesturing ok // [1F646 200D 2640]
  1722. 🙆‍♂ man gesturing ok // [1F646 200D 2642]
  1723. 🙇‍♀ woman bowing // [1F647 200D 2640]
  1724. 🙇‍♂ man bowing // [1F647 200D 2642]
  1725. 🙋‍♀ woman raising hand // [1F64B 200D 2640]
  1726. 🙋‍♂ man raising hand // [1F64B 200D 2642]
  1727. 🙍‍♀ woman frowning // [1F64D 200D 2640]
  1728. 🙍‍♂ man frowning // [1F64D 200D 2642]
  1729. 🙎‍♀ woman pouting // [1F64E 200D 2640]
  1730. 🙎‍♂ man pouting // [1F64E 200D 2642]
  1731. 🤦‍♀ woman facepalming // [1F926 200D 2640]
  1732. 🤦‍♂ man facepalming // [1F926 200D 2642]
  1733. 🤷‍♀ woman shrugging // [1F937 200D 2640]
  1734. 🤷‍♂ man shrugging // [1F937 200D 2642]
  1735. // Emoji ZWJ Sequence: Other
  1736. 🏳‍🌈 rainbow flag // [1F3F3 200D 1F308]
  1737. 🏴‍☠ pirate flag // [1F3F4 200D 2620]
  1738. 👁‍🗨 eye in speech bubble // [1F441 200D 1F5E8]
  1739. // References:
  1740. // [UCD] Unicode Character Database 10.0.0 [http://www.unicode.org/Public/10.0.0/ucd/]
  1741. // [Emoji] Unicode Emoji 5.0 [http://www.unicode.org/Public/emoji/5.0/]
  1742. // [CLDR] Unicode Common Locale Data Repository 33 [http://cldr.unicode.org/index/downloads/cldr-33]
  1743. //
  1744. // Sources:
  1745. // 1. emoji-test.txt (Emoji)
  1746. // 2. common/annotations/en.xml (CLDR)
  1747. // 3. emoji-zwj-sequences.txt (Emoji)