Regular Expressions 101

Save & Share

  • Regex Version: ver. 1
  • Update Regex
    ctrl+⇧+s
  • Save new Regex
    ctrl+s
  • Add to Community Library

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
g

Test String

Code Generator

Generated Code

const regex = /[#*0-9]\x{FE0F}\x{20E3}|[\x{A9}\x{AE}\x{203C}\x{2049}\x{2122}\x{2139}\x{2194}-\x{2199}\x{21A9}\x{21AA}\x{231A}\x{231B}\x{2328}\x{23CF}\x{23E9}-\x{23F3}\x{23F8}-\x{23FA}\x{24C2}\x{25AA}\x{25AB}\x{25B6}\x{25C0}\x{25FB}-\x{25FE}\x{2600}-\x{2604}\x{260E}\x{2611}\x{2614}\x{2615}\x{2618}]|\x{261D}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{2620}\x{2622}\x{2623}\x{2626}\x{262A}\x{262E}\x{262F}\x{2638}-\x{263A}\x{2640}\x{2642}\x{2648}-\x{2653}\x{265F}\x{2660}\x{2663}\x{2665}\x{2666}\x{2668}\x{267B}\x{267E}\x{267F}\x{2692}-\x{2697}\x{2699}\x{269B}\x{269C}\x{26A0}\x{26A1}\x{26AA}\x{26AB}\x{26B0}\x{26B1}\x{26BD}\x{26BE}\x{26C4}\x{26C5}\x{26C8}\x{26CE}\x{26CF}\x{26D1}\x{26D3}\x{26D4}\x{26E9}\x{26EA}\x{26F0}-\x{26F5}\x{26F7}\x{26F8}]|\x{26F9}(?:\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?|\x{FE0F}\x{200D}[\x{2640}\x{2642}]\x{FE0F})?|[\x{26FA}\x{26FD}\x{2702}\x{2705}\x{2708}\x{2709}]|[\x{270A}-\x{270D}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{270F}\x{2712}\x{2714}\x{2716}\x{271D}\x{2721}\x{2728}\x{2733}\x{2734}\x{2744}\x{2747}\x{274C}\x{274E}\x{2753}-\x{2755}\x{2757}\x{2763}\x{2764}\x{2795}-\x{2797}\x{27A1}\x{27B0}\x{27BF}\x{2934}\x{2935}\x{2B05}-\x{2B07}\x{2B1B}\x{2B1C}\x{2B50}\x{2B55}\x{3030}\x{303D}\x{3297}\x{3299}]|\x{D83C}(?:[\x{DC04}\x{DCCF}\x{DD70}\x{DD71}\x{DD7E}\x{DD7F}\x{DD8E}\x{DD91}-\x{DD9A}]|\x{DDE6}\x{D83C}[\x{DDE8}-\x{DDEC}\x{DDEE}\x{DDF1}\x{DDF2}\x{DDF4}\x{DDF6}-\x{DDFA}\x{DDFC}\x{DDFD}\x{DDFF}]|\x{DDE7}\x{D83C}[\x{DDE6}\x{DDE7}\x{DDE9}-\x{DDEF}\x{DDF1}-\x{DDF4}\x{DDF6}-\x{DDF9}\x{DDFB}\x{DDFC}\x{DDFE}\x{DDFF}]|\x{DDE8}\x{D83C}[\x{DDE6}\x{DDE8}\x{DDE9}\x{DDEB}-\x{DDEE}\x{DDF0}-\x{DDF5}\x{DDF7}\x{DDFA}-\x{DDFF}]|\x{DDE9}\x{D83C}[\x{DDEA}\x{DDEC}\x{DDEF}\x{DDF0}\x{DDF2}\x{DDF4}\x{DDFF}]|\x{DDEA}\x{D83C}[\x{DDE6}\x{DDE8}\x{DDEA}\x{DDEC}\x{DDED}\x{DDF7}-\x{DDFA}]|\x{DDEB}\x{D83C}[\x{DDEE}-\x{DDF0}\x{DDF2}\x{DDF4}\x{DDF7}]|\x{DDEC}\x{D83C}[\x{DDE6}\x{DDE7}\x{DDE9}-\x{DDEE}\x{DDF1}-\x{DDF3}\x{DDF5}-\x{DDFA}\x{DDFC}\x{DDFE}]|\x{DDED}\x{D83C}[\x{DDF0}\x{DDF2}\x{DDF3}\x{DDF7}\x{DDF9}\x{DDFA}]|\x{DDEE}\x{D83C}[\x{DDE8}-\x{DDEA}\x{DDF1}-\x{DDF4}\x{DDF6}-\x{DDF9}]|\x{DDEF}\x{D83C}[\x{DDEA}\x{DDF2}\x{DDF4}\x{DDF5}]|\x{DDF0}\x{D83C}[\x{DDEA}\x{DDEC}-\x{DDEE}\x{DDF2}\x{DDF3}\x{DDF5}\x{DDF7}\x{DDFC}\x{DDFE}\x{DDFF}]|\x{DDF1}\x{D83C}[\x{DDE6}-\x{DDE8}\x{DDEE}\x{DDF0}\x{DDF7}-\x{DDFB}\x{DDFE}]|\x{DDF2}\x{D83C}[\x{DDE6}\x{DDE8}-\x{DDED}\x{DDF0}-\x{DDFF}]|\x{DDF3}\x{D83C}[\x{DDE6}\x{DDE8}\x{DDEA}-\x{DDEC}\x{DDEE}\x{DDF1}\x{DDF4}\x{DDF5}\x{DDF7}\x{DDFA}\x{DDFF}]|\x{DDF4}\x{D83C}\x{DDF2}|\x{DDF5}\x{D83C}[\x{DDE6}\x{DDEA}-\x{DDED}\x{DDF0}-\x{DDF3}\x{DDF7}-\x{DDF9}\x{DDFC}\x{DDFE}]|\x{DDF6}\x{D83C}\x{DDE6}|\x{DDF7}\x{D83C}[\x{DDEA}\x{DDF4}\x{DDF8}\x{DDFA}\x{DDFC}]|\x{DDF8}\x{D83C}[\x{DDE6}-\x{DDEA}\x{DDEC}-\x{DDF4}\x{DDF7}-\x{DDF9}\x{DDFB}\x{DDFD}-\x{DDFF}]|\x{DDF9}\x{D83C}[\x{DDE6}\x{DDE8}\x{DDE9}\x{DDEB}-\x{DDED}\x{DDEF}-\x{DDF4}\x{DDF7}\x{DDF9}\x{DDFB}\x{DDFC}\x{DDFF}]|\x{DDFA}\x{D83C}[\x{DDE6}\x{DDEC}\x{DDF2}\x{DDF3}\x{DDF8}\x{DDFE}\x{DDFF}]|\x{DDFB}\x{D83C}[\x{DDE6}\x{DDE8}\x{DDEA}\x{DDEC}\x{DDEE}\x{DDF3}\x{DDFA}]|\x{DDFC}\x{D83C}[\x{DDEB}\x{DDF8}]|\x{DDFD}\x{D83C}\x{DDF0}|\x{DDFE}\x{D83C}[\x{DDEA}\x{DDF9}]|\x{DDFF}\x{D83C}[\x{DDE6}\x{DDF2}\x{DDFC}]|[\x{DE01}\x{DE02}\x{DE1A}\x{DE2F}\x{DE32}-\x{DE3A}\x{DE50}\x{DE51}\x{DF00}-\x{DF21}\x{DF24}-\x{DF84}]|\x{DF85}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DF86}-\x{DF93}\x{DF96}\x{DF97}\x{DF99}-\x{DF9B}\x{DF9E}-\x{DFC1}]|\x{DFC2}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DFC3}\x{DFC4}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DFC5}\x{DFC6}]|\x{DFC7}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DFC8}\x{DFC9}]|\x{DFCA}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DFCB}\x{DFCC}](?:\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?|\x{FE0F}\x{200D}[\x{2640}\x{2642}]\x{FE0F})?|[\x{DFCD}-\x{DFF0}]|\x{DFF3}(?:\x{FE0F}\x{200D}\x{D83C}\x{DF08})?|\x{DFF4}(?:\x{200D}\x{2620}\x{FE0F}|\x{DB40}\x{DC67}\x{DB40}\x{DC62}\x{DB40}(?:\x{DC65}\x{DB40}\x{DC6E}\x{DB40}\x{DC67}|\x{DC73}\x{DB40}\x{DC63}\x{DB40}\x{DC74})\x{DB40}\x{DC7F})?|[\x{DFF5}\x{DFF7}-\x{DFFF}])|\x{D83D}(?:[\x{DC00}-\x{DC14}]|\x{DC15}(?:\x{200D}\x{D83E}\x{DDBA})?|[\x{DC16}-\x{DC40}]|\x{DC41}(?:\x{FE0F}\x{200D}\x{D83D}\x{DDE8}\x{FE0F})?|[\x{DC42}\x{DC43}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DC44}\x{DC45}]|[\x{DC46}-\x{DC50}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DC51}-\x{DC65}]|[\x{DC66}\x{DC67}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DC68}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{2764}\x{FE0F}\x{200D}\x{D83D}(?:\x{DC8B}\x{200D}\x{D83D})?\x{DC68}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}(?:\x{DC66}(?:\x{200D}\x{D83D}\x{DC66})?|\x{DC67}(?:\x{200D}\x{D83D}[\x{DC66}\x{DC67}])?|[\x{DC68}\x{DC69}]\x{200D}\x{D83D}(?:\x{DC66}(?:\x{200D}\x{D83D}\x{DC66})?|\x{DC67}(?:\x{200D}\x{D83D}[\x{DC66}\x{DC67}])?)|[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}])|\x{D83E}[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])|\x{D83C}(?:\x{DFFB}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}]))?|\x{DFFC}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}(?:\x{DD1D}\x{200D}\x{D83D}\x{DC68}\x{D83C}\x{DFFB}|[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])))?|\x{DFFD}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}(?:\x{DD1D}\x{200D}\x{D83D}\x{DC68}\x{D83C}[\x{DFFB}\x{DFFC}]|[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])))?|\x{DFFE}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}(?:\x{DD1D}\x{200D}\x{D83D}\x{DC68}\x{D83C}[\x{DFFB}-\x{DFFD}]|[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])))?|\x{DFFF}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}(?:\x{DD1D}\x{200D}\x{D83D}\x{DC68}\x{D83C}[\x{DFFB}-\x{DFFE}]|[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])))?))?|\x{DC69}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{2764}\x{FE0F}\x{200D}\x{D83D}(?:\x{DC8B}\x{200D}\x{D83D})?[\x{DC68}\x{DC69}]|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}(?:\x{DC66}(?:\x{200D}\x{D83D}\x{DC66})?|\x{DC67}(?:\x{200D}\x{D83D}[\x{DC66}\x{DC67}])?|\x{DC69}\x{200D}\x{D83D}(?:\x{DC66}(?:\x{200D}\x{D83D}\x{DC66})?|\x{DC67}(?:\x{200D}\x{D83D}[\x{DC66}\x{DC67}])?)|[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}])|\x{D83E}[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])|\x{D83C}(?:\x{DFFB}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}(?:\x{DD1D}\x{200D}\x{D83D}\x{DC68}\x{D83C}[\x{DFFC}-\x{DFFF}]|[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])))?|\x{DFFC}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}(?:\x{DD1D}\x{200D}\x{D83D}(?:\x{DC68}\x{D83C}[\x{DFFB}\x{DFFD}-\x{DFFF}]|\x{DC69}\x{D83C}\x{DFFB})|[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])))?|\x{DFFD}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}(?:\x{DD1D}\x{200D}\x{D83D}(?:\x{DC68}\x{D83C}[\x{DFFB}\x{DFFC}\x{DFFE}\x{DFFF}]|\x{DC69}\x{D83C}[\x{DFFB}\x{DFFC}])|[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])))?|\x{DFFE}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}(?:\x{DD1D}\x{200D}\x{D83D}(?:\x{DC68}\x{D83C}[\x{DFFB}-\x{DFFD}\x{DFFF}]|\x{DC69}\x{D83C}[\x{DFFB}-\x{DFFD}])|[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])))?|\x{DFFF}(?:\x{200D}(?:[\x{2695}\x{2696}\x{2708}]\x{FE0F}|\x{D83C}[\x{DF3E}\x{DF73}\x{DF93}\x{DFA4}\x{DFA8}\x{DFEB}\x{DFED}]|\x{D83D}[\x{DCBB}\x{DCBC}\x{DD27}\x{DD2C}\x{DE80}\x{DE92}]|\x{D83E}(?:\x{DD1D}\x{200D}\x{D83D}[\x{DC68}\x{DC69}]\x{D83C}[\x{DFFB}-\x{DFFE}]|[\x{DDAF}-\x{DDB3}\x{DDBC}\x{DDBD}])))?))?|\x{DC6A}|[\x{DC6B}-\x{DC6D}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DC6E}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|\x{DC6F}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?|\x{DC70}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DC71}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|\x{DC72}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DC73}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DC74}-\x{DC76}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DC77}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|\x{DC78}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DC79}-\x{DC7B}]|\x{DC7C}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DC7D}-\x{DC80}]|[\x{DC81}\x{DC82}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|\x{DC83}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DC84}|\x{DC85}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DC86}\x{DC87}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DC88}-\x{DCA9}]|\x{DCAA}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DCAB}-\x{DCFD}\x{DCFF}-\x{DD3D}\x{DD49}-\x{DD4E}\x{DD50}-\x{DD67}\x{DD6F}\x{DD70}\x{DD73}]|\x{DD74}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DD75}(?:\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?|\x{FE0F}\x{200D}[\x{2640}\x{2642}]\x{FE0F})?|[\x{DD76}-\x{DD79}]|\x{DD7A}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DD87}\x{DD8A}-\x{DD8D}]|[\x{DD90}\x{DD95}\x{DD96}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DDA4}\x{DDA5}\x{DDA8}\x{DDB1}\x{DDB2}\x{DDBC}\x{DDC2}-\x{DDC4}\x{DDD1}-\x{DDD3}\x{DDDC}-\x{DDDE}\x{DDE1}\x{DDE3}\x{DDE8}\x{DDEF}\x{DDF3}\x{DDFA}-\x{DE44}]|[\x{DE45}-\x{DE47}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DE48}-\x{DE4A}]|\x{DE4B}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|\x{DE4C}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DE4D}\x{DE4E}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|\x{DE4F}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DE80}-\x{DEA2}]|\x{DEA3}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DEA4}-\x{DEB3}]|[\x{DEB4}-\x{DEB6}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DEB7}-\x{DEBF}]|\x{DEC0}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DEC1}-\x{DEC5}\x{DECB}]|\x{DECC}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DECD}-\x{DED2}\x{DED5}\x{DEE0}-\x{DEE5}\x{DEE9}\x{DEEB}\x{DEEC}\x{DEF0}\x{DEF3}-\x{DEFA}\x{DFE0}-\x{DFEB}])|\x{D83E}(?:[\x{DD0D}\x{DD0E}]|\x{DD0F}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DD10}-\x{DD17}]|[\x{DD18}-\x{DD1C}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DD1D}|[\x{DD1E}\x{DD1F}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DD20}-\x{DD25}]|\x{DD26}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DD27}-\x{DD2F}]|[\x{DD30}-\x{DD36}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DD37}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DD38}\x{DD39}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|\x{DD3A}|\x{DD3C}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?|[\x{DD3D}\x{DD3E}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DD3F}-\x{DD45}\x{DD47}-\x{DD71}\x{DD73}-\x{DD76}\x{DD7A}-\x{DDA2}\x{DDA5}-\x{DDAA}\x{DDAE}-\x{DDB4}]|[\x{DDB5}\x{DDB6}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DDB7}|[\x{DDB8}\x{DDB9}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|\x{DDBA}|\x{DDBB}(?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|[\x{DDBC}-\x{DDCA}]|[\x{DDCD}-\x{DDCF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|\x{DDD0}|\x{DDD1}(?:\x{200D}\x{D83E}\x{DD1D}\x{200D}\x{D83E}\x{DDD1}|\x{D83C}(?:\x{DFFB}(?:\x{200D}\x{D83E}\x{DD1D}\x{200D}\x{D83E}\x{DDD1}\x{D83C}\x{DFFB})?|\x{DFFC}(?:\x{200D}\x{D83E}\x{DD1D}\x{200D}\x{D83E}\x{DDD1}\x{D83C}[\x{DFFB}\x{DFFC}])?|\x{DFFD}(?:\x{200D}\x{D83E}\x{DD1D}\x{200D}\x{D83E}\x{DDD1}\x{D83C}[\x{DFFB}-\x{DFFD}])?|\x{DFFE}(?:\x{200D}\x{D83E}\x{DD1D}\x{200D}\x{D83E}\x{DDD1}\x{D83C}[\x{DFFB}-\x{DFFE}])?|\x{DFFF}(?:\x{200D}\x{D83E}\x{DD1D}\x{200D}\x{D83E}\x{DDD1}\x{D83C}[\x{DFFB}-\x{DFFF}])?))?|[\x{DDD2}-\x{DDD5}](?:\x{D83C}[\x{DFFB}-\x{DFFF}])?|\x{DDD6}(?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DDD7}-\x{DDDD}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F}|\x{D83C}[\x{DFFB}-\x{DFFF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?)?|[\x{DDDE}\x{DDDF}](?:\x{200D}[\x{2640}\x{2642}]\x{FE0F})?|[\x{DDE0}-\x{DDFF}\x{DE70}-\x{DE73}\x{DE78}-\x{DE7A}\x{DE80}-\x{DE82}\x{DE90}-\x{DE95}])/g; // Alternative syntax using RegExp constructor // const regex = new RegExp('[#*0-9]\\x{FE0F}\\x{20E3}|[\\x{A9}\\x{AE}\\x{203C}\\x{2049}\\x{2122}\\x{2139}\\x{2194}-\\x{2199}\\x{21A9}\\x{21AA}\\x{231A}\\x{231B}\\x{2328}\\x{23CF}\\x{23E9}-\\x{23F3}\\x{23F8}-\\x{23FA}\\x{24C2}\\x{25AA}\\x{25AB}\\x{25B6}\\x{25C0}\\x{25FB}-\\x{25FE}\\x{2600}-\\x{2604}\\x{260E}\\x{2611}\\x{2614}\\x{2615}\\x{2618}]|\\x{261D}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{2620}\\x{2622}\\x{2623}\\x{2626}\\x{262A}\\x{262E}\\x{262F}\\x{2638}-\\x{263A}\\x{2640}\\x{2642}\\x{2648}-\\x{2653}\\x{265F}\\x{2660}\\x{2663}\\x{2665}\\x{2666}\\x{2668}\\x{267B}\\x{267E}\\x{267F}\\x{2692}-\\x{2697}\\x{2699}\\x{269B}\\x{269C}\\x{26A0}\\x{26A1}\\x{26AA}\\x{26AB}\\x{26B0}\\x{26B1}\\x{26BD}\\x{26BE}\\x{26C4}\\x{26C5}\\x{26C8}\\x{26CE}\\x{26CF}\\x{26D1}\\x{26D3}\\x{26D4}\\x{26E9}\\x{26EA}\\x{26F0}-\\x{26F5}\\x{26F7}\\x{26F8}]|\\x{26F9}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?|\\x{FE0F}\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?|[\\x{26FA}\\x{26FD}\\x{2702}\\x{2705}\\x{2708}\\x{2709}]|[\\x{270A}-\\x{270D}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{270F}\\x{2712}\\x{2714}\\x{2716}\\x{271D}\\x{2721}\\x{2728}\\x{2733}\\x{2734}\\x{2744}\\x{2747}\\x{274C}\\x{274E}\\x{2753}-\\x{2755}\\x{2757}\\x{2763}\\x{2764}\\x{2795}-\\x{2797}\\x{27A1}\\x{27B0}\\x{27BF}\\x{2934}\\x{2935}\\x{2B05}-\\x{2B07}\\x{2B1B}\\x{2B1C}\\x{2B50}\\x{2B55}\\x{3030}\\x{303D}\\x{3297}\\x{3299}]|\\x{D83C}(?:[\\x{DC04}\\x{DCCF}\\x{DD70}\\x{DD71}\\x{DD7E}\\x{DD7F}\\x{DD8E}\\x{DD91}-\\x{DD9A}]|\\x{DDE6}\\x{D83C}[\\x{DDE8}-\\x{DDEC}\\x{DDEE}\\x{DDF1}\\x{DDF2}\\x{DDF4}\\x{DDF6}-\\x{DDFA}\\x{DDFC}\\x{DDFD}\\x{DDFF}]|\\x{DDE7}\\x{D83C}[\\x{DDE6}\\x{DDE7}\\x{DDE9}-\\x{DDEF}\\x{DDF1}-\\x{DDF4}\\x{DDF6}-\\x{DDF9}\\x{DDFB}\\x{DDFC}\\x{DDFE}\\x{DDFF}]|\\x{DDE8}\\x{D83C}[\\x{DDE6}\\x{DDE8}\\x{DDE9}\\x{DDEB}-\\x{DDEE}\\x{DDF0}-\\x{DDF5}\\x{DDF7}\\x{DDFA}-\\x{DDFF}]|\\x{DDE9}\\x{D83C}[\\x{DDEA}\\x{DDEC}\\x{DDEF}\\x{DDF0}\\x{DDF2}\\x{DDF4}\\x{DDFF}]|\\x{DDEA}\\x{D83C}[\\x{DDE6}\\x{DDE8}\\x{DDEA}\\x{DDEC}\\x{DDED}\\x{DDF7}-\\x{DDFA}]|\\x{DDEB}\\x{D83C}[\\x{DDEE}-\\x{DDF0}\\x{DDF2}\\x{DDF4}\\x{DDF7}]|\\x{DDEC}\\x{D83C}[\\x{DDE6}\\x{DDE7}\\x{DDE9}-\\x{DDEE}\\x{DDF1}-\\x{DDF3}\\x{DDF5}-\\x{DDFA}\\x{DDFC}\\x{DDFE}]|\\x{DDED}\\x{D83C}[\\x{DDF0}\\x{DDF2}\\x{DDF3}\\x{DDF7}\\x{DDF9}\\x{DDFA}]|\\x{DDEE}\\x{D83C}[\\x{DDE8}-\\x{DDEA}\\x{DDF1}-\\x{DDF4}\\x{DDF6}-\\x{DDF9}]|\\x{DDEF}\\x{D83C}[\\x{DDEA}\\x{DDF2}\\x{DDF4}\\x{DDF5}]|\\x{DDF0}\\x{D83C}[\\x{DDEA}\\x{DDEC}-\\x{DDEE}\\x{DDF2}\\x{DDF3}\\x{DDF5}\\x{DDF7}\\x{DDFC}\\x{DDFE}\\x{DDFF}]|\\x{DDF1}\\x{D83C}[\\x{DDE6}-\\x{DDE8}\\x{DDEE}\\x{DDF0}\\x{DDF7}-\\x{DDFB}\\x{DDFE}]|\\x{DDF2}\\x{D83C}[\\x{DDE6}\\x{DDE8}-\\x{DDED}\\x{DDF0}-\\x{DDFF}]|\\x{DDF3}\\x{D83C}[\\x{DDE6}\\x{DDE8}\\x{DDEA}-\\x{DDEC}\\x{DDEE}\\x{DDF1}\\x{DDF4}\\x{DDF5}\\x{DDF7}\\x{DDFA}\\x{DDFF}]|\\x{DDF4}\\x{D83C}\\x{DDF2}|\\x{DDF5}\\x{D83C}[\\x{DDE6}\\x{DDEA}-\\x{DDED}\\x{DDF0}-\\x{DDF3}\\x{DDF7}-\\x{DDF9}\\x{DDFC}\\x{DDFE}]|\\x{DDF6}\\x{D83C}\\x{DDE6}|\\x{DDF7}\\x{D83C}[\\x{DDEA}\\x{DDF4}\\x{DDF8}\\x{DDFA}\\x{DDFC}]|\\x{DDF8}\\x{D83C}[\\x{DDE6}-\\x{DDEA}\\x{DDEC}-\\x{DDF4}\\x{DDF7}-\\x{DDF9}\\x{DDFB}\\x{DDFD}-\\x{DDFF}]|\\x{DDF9}\\x{D83C}[\\x{DDE6}\\x{DDE8}\\x{DDE9}\\x{DDEB}-\\x{DDED}\\x{DDEF}-\\x{DDF4}\\x{DDF7}\\x{DDF9}\\x{DDFB}\\x{DDFC}\\x{DDFF}]|\\x{DDFA}\\x{D83C}[\\x{DDE6}\\x{DDEC}\\x{DDF2}\\x{DDF3}\\x{DDF8}\\x{DDFE}\\x{DDFF}]|\\x{DDFB}\\x{D83C}[\\x{DDE6}\\x{DDE8}\\x{DDEA}\\x{DDEC}\\x{DDEE}\\x{DDF3}\\x{DDFA}]|\\x{DDFC}\\x{D83C}[\\x{DDEB}\\x{DDF8}]|\\x{DDFD}\\x{D83C}\\x{DDF0}|\\x{DDFE}\\x{D83C}[\\x{DDEA}\\x{DDF9}]|\\x{DDFF}\\x{D83C}[\\x{DDE6}\\x{DDF2}\\x{DDFC}]|[\\x{DE01}\\x{DE02}\\x{DE1A}\\x{DE2F}\\x{DE32}-\\x{DE3A}\\x{DE50}\\x{DE51}\\x{DF00}-\\x{DF21}\\x{DF24}-\\x{DF84}]|\\x{DF85}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DF86}-\\x{DF93}\\x{DF96}\\x{DF97}\\x{DF99}-\\x{DF9B}\\x{DF9E}-\\x{DFC1}]|\\x{DFC2}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DFC3}\\x{DFC4}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DFC5}\\x{DFC6}]|\\x{DFC7}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DFC8}\\x{DFC9}]|\\x{DFCA}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DFCB}\\x{DFCC}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?|\\x{FE0F}\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?|[\\x{DFCD}-\\x{DFF0}]|\\x{DFF3}(?:\\x{FE0F}\\x{200D}\\x{D83C}\\x{DF08})?|\\x{DFF4}(?:\\x{200D}\\x{2620}\\x{FE0F}|\\x{DB40}\\x{DC67}\\x{DB40}\\x{DC62}\\x{DB40}(?:\\x{DC65}\\x{DB40}\\x{DC6E}\\x{DB40}\\x{DC67}|\\x{DC73}\\x{DB40}\\x{DC63}\\x{DB40}\\x{DC74})\\x{DB40}\\x{DC7F})?|[\\x{DFF5}\\x{DFF7}-\\x{DFFF}])|\\x{D83D}(?:[\\x{DC00}-\\x{DC14}]|\\x{DC15}(?:\\x{200D}\\x{D83E}\\x{DDBA})?|[\\x{DC16}-\\x{DC40}]|\\x{DC41}(?:\\x{FE0F}\\x{200D}\\x{D83D}\\x{DDE8}\\x{FE0F})?|[\\x{DC42}\\x{DC43}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DC44}\\x{DC45}]|[\\x{DC46}-\\x{DC50}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DC51}-\\x{DC65}]|[\\x{DC66}\\x{DC67}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DC68}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{2764}\\x{FE0F}\\x{200D}\\x{D83D}(?:\\x{DC8B}\\x{200D}\\x{D83D})?\\x{DC68}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}(?:\\x{DC66}(?:\\x{200D}\\x{D83D}\\x{DC66})?|\\x{DC67}(?:\\x{200D}\\x{D83D}[\\x{DC66}\\x{DC67}])?|[\\x{DC68}\\x{DC69}]\\x{200D}\\x{D83D}(?:\\x{DC66}(?:\\x{200D}\\x{D83D}\\x{DC66})?|\\x{DC67}(?:\\x{200D}\\x{D83D}[\\x{DC66}\\x{DC67}])?)|[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}])|\\x{D83E}[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])|\\x{D83C}(?:\\x{DFFB}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}]))?|\\x{DFFC}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}(?:\\x{DD1D}\\x{200D}\\x{D83D}\\x{DC68}\\x{D83C}\\x{DFFB}|[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])))?|\\x{DFFD}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}(?:\\x{DD1D}\\x{200D}\\x{D83D}\\x{DC68}\\x{D83C}[\\x{DFFB}\\x{DFFC}]|[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])))?|\\x{DFFE}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}(?:\\x{DD1D}\\x{200D}\\x{D83D}\\x{DC68}\\x{D83C}[\\x{DFFB}-\\x{DFFD}]|[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])))?|\\x{DFFF}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}(?:\\x{DD1D}\\x{200D}\\x{D83D}\\x{DC68}\\x{D83C}[\\x{DFFB}-\\x{DFFE}]|[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])))?))?|\\x{DC69}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{2764}\\x{FE0F}\\x{200D}\\x{D83D}(?:\\x{DC8B}\\x{200D}\\x{D83D})?[\\x{DC68}\\x{DC69}]|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}(?:\\x{DC66}(?:\\x{200D}\\x{D83D}\\x{DC66})?|\\x{DC67}(?:\\x{200D}\\x{D83D}[\\x{DC66}\\x{DC67}])?|\\x{DC69}\\x{200D}\\x{D83D}(?:\\x{DC66}(?:\\x{200D}\\x{D83D}\\x{DC66})?|\\x{DC67}(?:\\x{200D}\\x{D83D}[\\x{DC66}\\x{DC67}])?)|[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}])|\\x{D83E}[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])|\\x{D83C}(?:\\x{DFFB}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}(?:\\x{DD1D}\\x{200D}\\x{D83D}\\x{DC68}\\x{D83C}[\\x{DFFC}-\\x{DFFF}]|[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])))?|\\x{DFFC}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}(?:\\x{DD1D}\\x{200D}\\x{D83D}(?:\\x{DC68}\\x{D83C}[\\x{DFFB}\\x{DFFD}-\\x{DFFF}]|\\x{DC69}\\x{D83C}\\x{DFFB})|[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])))?|\\x{DFFD}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}(?:\\x{DD1D}\\x{200D}\\x{D83D}(?:\\x{DC68}\\x{D83C}[\\x{DFFB}\\x{DFFC}\\x{DFFE}\\x{DFFF}]|\\x{DC69}\\x{D83C}[\\x{DFFB}\\x{DFFC}])|[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])))?|\\x{DFFE}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}(?:\\x{DD1D}\\x{200D}\\x{D83D}(?:\\x{DC68}\\x{D83C}[\\x{DFFB}-\\x{DFFD}\\x{DFFF}]|\\x{DC69}\\x{D83C}[\\x{DFFB}-\\x{DFFD}])|[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])))?|\\x{DFFF}(?:\\x{200D}(?:[\\x{2695}\\x{2696}\\x{2708}]\\x{FE0F}|\\x{D83C}[\\x{DF3E}\\x{DF73}\\x{DF93}\\x{DFA4}\\x{DFA8}\\x{DFEB}\\x{DFED}]|\\x{D83D}[\\x{DCBB}\\x{DCBC}\\x{DD27}\\x{DD2C}\\x{DE80}\\x{DE92}]|\\x{D83E}(?:\\x{DD1D}\\x{200D}\\x{D83D}[\\x{DC68}\\x{DC69}]\\x{D83C}[\\x{DFFB}-\\x{DFFE}]|[\\x{DDAF}-\\x{DDB3}\\x{DDBC}\\x{DDBD}])))?))?|\\x{DC6A}|[\\x{DC6B}-\\x{DC6D}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DC6E}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|\\x{DC6F}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?|\\x{DC70}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DC71}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|\\x{DC72}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DC73}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DC74}-\\x{DC76}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DC77}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|\\x{DC78}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DC79}-\\x{DC7B}]|\\x{DC7C}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DC7D}-\\x{DC80}]|[\\x{DC81}\\x{DC82}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|\\x{DC83}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DC84}|\\x{DC85}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DC86}\\x{DC87}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DC88}-\\x{DCA9}]|\\x{DCAA}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DCAB}-\\x{DCFD}\\x{DCFF}-\\x{DD3D}\\x{DD49}-\\x{DD4E}\\x{DD50}-\\x{DD67}\\x{DD6F}\\x{DD70}\\x{DD73}]|\\x{DD74}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DD75}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?|\\x{FE0F}\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?|[\\x{DD76}-\\x{DD79}]|\\x{DD7A}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DD87}\\x{DD8A}-\\x{DD8D}]|[\\x{DD90}\\x{DD95}\\x{DD96}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DDA4}\\x{DDA5}\\x{DDA8}\\x{DDB1}\\x{DDB2}\\x{DDBC}\\x{DDC2}-\\x{DDC4}\\x{DDD1}-\\x{DDD3}\\x{DDDC}-\\x{DDDE}\\x{DDE1}\\x{DDE3}\\x{DDE8}\\x{DDEF}\\x{DDF3}\\x{DDFA}-\\x{DE44}]|[\\x{DE45}-\\x{DE47}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DE48}-\\x{DE4A}]|\\x{DE4B}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|\\x{DE4C}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DE4D}\\x{DE4E}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|\\x{DE4F}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DE80}-\\x{DEA2}]|\\x{DEA3}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DEA4}-\\x{DEB3}]|[\\x{DEB4}-\\x{DEB6}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DEB7}-\\x{DEBF}]|\\x{DEC0}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DEC1}-\\x{DEC5}\\x{DECB}]|\\x{DECC}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DECD}-\\x{DED2}\\x{DED5}\\x{DEE0}-\\x{DEE5}\\x{DEE9}\\x{DEEB}\\x{DEEC}\\x{DEF0}\\x{DEF3}-\\x{DEFA}\\x{DFE0}-\\x{DFEB}])|\\x{D83E}(?:[\\x{DD0D}\\x{DD0E}]|\\x{DD0F}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DD10}-\\x{DD17}]|[\\x{DD18}-\\x{DD1C}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DD1D}|[\\x{DD1E}\\x{DD1F}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DD20}-\\x{DD25}]|\\x{DD26}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DD27}-\\x{DD2F}]|[\\x{DD30}-\\x{DD36}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DD37}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DD38}\\x{DD39}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|\\x{DD3A}|\\x{DD3C}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?|[\\x{DD3D}\\x{DD3E}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DD3F}-\\x{DD45}\\x{DD47}-\\x{DD71}\\x{DD73}-\\x{DD76}\\x{DD7A}-\\x{DDA2}\\x{DDA5}-\\x{DDAA}\\x{DDAE}-\\x{DDB4}]|[\\x{DDB5}\\x{DDB6}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DDB7}|[\\x{DDB8}\\x{DDB9}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|\\x{DDBA}|\\x{DDBB}(?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|[\\x{DDBC}-\\x{DDCA}]|[\\x{DDCD}-\\x{DDCF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|\\x{DDD0}|\\x{DDD1}(?:\\x{200D}\\x{D83E}\\x{DD1D}\\x{200D}\\x{D83E}\\x{DDD1}|\\x{D83C}(?:\\x{DFFB}(?:\\x{200D}\\x{D83E}\\x{DD1D}\\x{200D}\\x{D83E}\\x{DDD1}\\x{D83C}\\x{DFFB})?|\\x{DFFC}(?:\\x{200D}\\x{D83E}\\x{DD1D}\\x{200D}\\x{D83E}\\x{DDD1}\\x{D83C}[\\x{DFFB}\\x{DFFC}])?|\\x{DFFD}(?:\\x{200D}\\x{D83E}\\x{DD1D}\\x{200D}\\x{D83E}\\x{DDD1}\\x{D83C}[\\x{DFFB}-\\x{DFFD}])?|\\x{DFFE}(?:\\x{200D}\\x{D83E}\\x{DD1D}\\x{200D}\\x{D83E}\\x{DDD1}\\x{D83C}[\\x{DFFB}-\\x{DFFE}])?|\\x{DFFF}(?:\\x{200D}\\x{D83E}\\x{DD1D}\\x{200D}\\x{D83E}\\x{DDD1}\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?))?|[\\x{DDD2}-\\x{DDD5}](?:\\x{D83C}[\\x{DFFB}-\\x{DFFF}])?|\\x{DDD6}(?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DDD7}-\\x{DDDD}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F}|\\x{D83C}[\\x{DFFB}-\\x{DFFF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?)?|[\\x{DDDE}\\x{DDDF}](?:\\x{200D}[\\x{2640}\\x{2642}]\\x{FE0F})?|[\\x{DDE0}-\\x{DDFF}\\x{DE70}-\\x{DE73}\\x{DE78}-\\x{DE7A}\\x{DE80}-\\x{DE82}\\x{DE90}-\\x{DE95}])', 'g') const str = `# emoji-test.txt # Date: 2019-01-27, 15:43:01 GMT # © 2019 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. # For terms of use, see http://www.unicode.org/terms_of_use.html # #51 # Version: 12.0 # # For documentation and usage, see http://www.unicode.org/reports/tr51 # # This file provides data for testing which emoji forms should be in keyboards and which should also be displayed/processed. # emoji name # Code points — list of one or more hex code points, separated by spaces # Status # component — an Emoji_Component, # excluding Regional_Indicators, ASCII, and non-Emoji. #51), # excluding Emoji_Component #51) #51) # Notes: # • This includes the emoji components that need emoji presentation (skin tone and hair) # when isolated, but omits the components that need not have an emoji # presentation when isolated. # • The RGI set is covered by the listed fully-qualified emoji. # • The listed minimally-qualified and unqualified cover all cases where an # element of the RGI set is missing one or more emoji presentation selectors. # • The file is in CLDR order, not codepoint order. This is recommended (but not required!) for keyboard palettes. # • The groups and subgroups are illustrative. See the Emoji Order chart for more information. # group: Smileys & Emotion # subgroup: face-smiling # 😀 grinning face # 😃 grinning face with big eyes # 😄 grinning face with smiling eyes # 😁 beaming face with smiling eyes # 😆 grinning squinting face # 😅 grinning face with sweat # 🀣 rolling on the floor laughing # 😂 face with tears of joy # 🙂 slightly smiling face # 🙃 upside-down face # 😉 winking face # 😊 smiling face with smiling eyes # 😇 smiling face with halo # subgroup: face-affection # 🥰 smiling face with hearts # 😍 smiling face with heart-eyes # 🀩 star-struck # 😘 face blowing a kiss # 😗 kissing face # ☺ smiling face # ☺ smiling face # 😚 kissing face with closed eyes # 😙 kissing face with smiling eyes # subgroup: face-tongue # 😋 face savoring food # 😛 face with tongue # 😜 winking face with tongue # 🀪 zany face # 😝 squinting face with tongue # 🀑 money-mouth face # subgroup: face-hand # 🀗 hugging face # 🀭 face with hand over mouth # 🀫 shushing face # 🀔 thinking face # subgroup: face-neutral-skeptical # 🀐 zipper-mouth face # 🀚 face with raised eyebrow # 😐 neutral face # 😑 expressionless face # 😶 face without mouth # 😏 smirking face # 😒 unamused face # 🙄 face with rolling eyes # 😬 grimacing face # 🀥 lying face # subgroup: face-sleepy # 😌 relieved face # 😔 pensive face # 😪 sleepy face # 🀀 drooling face # 😎 sleeping face # subgroup: face-unwell # 😷 face with medical mask # 🀒 face with thermometer # 🀕 face with head-bandage # 🀢 nauseated face # 🀮 face vomiting # 🀧 sneezing face # 🥵 hot face # 🥶 cold face # 🥎 woozy face # 😵 dizzy face # 🀯 exploding head # subgroup: face-hat # 🀠 cowboy hat face # 🥳 partying face # subgroup: face-glasses # 😎 smiling face with sunglasses # 🀓 nerd face # 🧐 face with monocle # subgroup: face-concerned # 😕 confused face # 😟 worried face # 🙁 slightly frowning face # ☹ frowning face # ☹ frowning face # 😮 face with open mouth # 😯 hushed face # 😲 astonished face # 😳 flushed face # 🥺 pleading face # 😊 frowning face with open mouth # 😧 anguished face # 😚 fearful face # 😰 anxious face with sweat # 😥 sad but relieved face # 😢 crying face # 😭 loudly crying face # 😱 face screaming in fear # 😖 confounded face # 😣 persevering face # 😞 disappointed face # 😓 downcast face with sweat # 😩 weary face # 😫 tired face # 🥱 yawning face # subgroup: face-negative # 😀 face with steam from nose # 😡 pouting face # 😠 angry face # 🀬 face with symbols on mouth # 😈 smiling face with horns # 👿 angry face with horns # 💀 skull # ☠ skull and crossbones # ☠ skull and crossbones # subgroup: face-costume # 💩 pile of poo # 🀡 clown face # 👹 ogre # 👺 goblin # 👻 ghost # 👜 alien # 👟 alien monster # 🀖 robot # subgroup: cat-face # 😺 grinning cat # 😞 grinning cat with smiling eyes # 😹 cat with tears of joy # 😻 smiling cat with heart-eyes # 😌 cat with wry smile # 😜 kissing cat # 🙀 weary cat # 😿 crying cat # 😟 pouting cat # subgroup: monkey-face # 🙈 see-no-evil monkey # 🙉 hear-no-evil monkey # 🙊 speak-no-evil monkey # subgroup: emotion # 💋 kiss mark # 💌 love letter # 💘 heart with arrow # 💝 heart with ribbon # 💖 sparkling heart # 💗 growing heart # 💓 beating heart # 💞 revolving hearts # 💕 two hearts # 💟 heart decoration # ❣ heart exclamation # ❣ heart exclamation # 💔 broken heart # ❀ red heart # ❀ red heart # 🧡 orange heart # 💛 yellow heart # 💚 green heart # 💙 blue heart # 💜 purple heart # 🀎 brown heart # 🖀 black heart # 🀍 white heart # 💯 hundred points # 💢 anger symbol # 💥 collision # 💫 dizzy # 💊 sweat droplets # 💚 dashing away # 🕳 hole # 🕳 hole # 💣 bomb # 💬 speech balloon # 👁‍🗚 eye in speech bubble # 👁‍🗚 eye in speech bubble # 👁‍🗚 eye in speech bubble # 👁‍🗚 eye in speech bubble # 🗚 left speech bubble # 🗚 left speech bubble # 🗯 right anger bubble # 🗯 right anger bubble # 💭 thought balloon # 💀 zzz # Smileys & Emotion subtotal: 160 # Smileys & Emotion subtotal: 160 w/o modifiers # group: People & Body # subgroup: hand-fingers-open # 👋 waving hand # 👋🏻 waving hand: light skin tone # 👋🏌 waving hand: medium-light skin tone # 👋🏜 waving hand: medium skin tone # 👋🏟 waving hand: medium-dark skin tone # 👋🏿 waving hand: dark skin tone # 🀚 raised back of hand # 🀚🏻 raised back of hand: light skin tone # 🀚🏌 raised back of hand: medium-light skin tone # 🀚🏜 raised back of hand: medium skin tone # 🀚🏟 raised back of hand: medium-dark skin tone # 🀚🏿 raised back of hand: dark skin tone # 🖐 hand with fingers splayed # 🖐 hand with fingers splayed # 🖐🏻 hand with fingers splayed: light skin tone # 🖐🏌 hand with fingers splayed: medium-light skin tone # 🖐🏜 hand with fingers splayed: medium skin tone # 🖐🏟 hand with fingers splayed: medium-dark skin tone # 🖐🏿 hand with fingers splayed: dark skin tone # ✋ raised hand # ✋🏻 raised hand: light skin tone # ✋🏌 raised hand: medium-light skin tone # ✋🏜 raised hand: medium skin tone # ✋🏟 raised hand: medium-dark skin tone # ✋🏿 raised hand: dark skin tone # 🖖 vulcan salute # 🖖🏻 vulcan salute: light skin tone # 🖖🏌 vulcan salute: medium-light skin tone # 🖖🏜 vulcan salute: medium skin tone # 🖖🏟 vulcan salute: medium-dark skin tone # 🖖🏿 vulcan salute: dark skin tone # subgroup: hand-fingers-partial # 👌 OK hand # 👌🏻 OK hand: light skin tone # 👌🏌 OK hand: medium-light skin tone # 👌🏜 OK hand: medium skin tone # 👌🏟 OK hand: medium-dark skin tone # 👌🏿 OK hand: dark skin tone # 🀏 pinching hand # 🀏🏻 pinching hand: light skin tone # 🀏🏌 pinching hand: medium-light skin tone # 🀏🏜 pinching hand: medium skin tone # 🀏🏟 pinching hand: medium-dark skin tone # 🀏🏿 pinching hand: dark skin tone # ✌ victory hand # ✌ victory hand # ✌🏻 victory hand: light skin tone # ✌🏌 victory hand: medium-light skin tone # ✌🏜 victory hand: medium skin tone # ✌🏟 victory hand: medium-dark skin tone # ✌🏿 victory hand: dark skin tone # 🀞 crossed fingers # 🀞🏻 crossed fingers: light skin tone # 🀞🏌 crossed fingers: medium-light skin tone # 🀞🏜 crossed fingers: medium skin tone # 🀞🏟 crossed fingers: medium-dark skin tone # 🀞🏿 crossed fingers: dark skin tone # 🀟 love-you gesture # 🀟🏻 love-you gesture: light skin tone # 🀟🏌 love-you gesture: medium-light skin tone # 🀟🏜 love-you gesture: medium skin tone # 🀟🏟 love-you gesture: medium-dark skin tone # 🀟🏿 love-you gesture: dark skin tone # 🀘 sign of the horns # 🀘🏻 sign of the horns: light skin tone # 🀘🏌 sign of the horns: medium-light skin tone # 🀘🏜 sign of the horns: medium skin tone # 🀘🏟 sign of the horns: medium-dark skin tone # 🀘🏿 sign of the horns: dark skin tone # 🀙 call me hand # 🀙🏻 call me hand: light skin tone # 🀙🏌 call me hand: medium-light skin tone # 🀙🏜 call me hand: medium skin tone # 🀙🏟 call me hand: medium-dark skin tone # 🀙🏿 call me hand: dark skin tone # subgroup: hand-single-finger # 👈 backhand index pointing left # 👈🏻 backhand index pointing left: light skin tone # 👈🏌 backhand index pointing left: medium-light skin tone # 👈🏜 backhand index pointing left: medium skin tone # 👈🏟 backhand index pointing left: medium-dark skin tone # 👈🏿 backhand index pointing left: dark skin tone # 👉 backhand index pointing right # 👉🏻 backhand index pointing right: light skin tone # 👉🏌 backhand index pointing right: medium-light skin tone # 👉🏜 backhand index pointing right: medium skin tone # 👉🏟 backhand index pointing right: medium-dark skin tone # 👉🏿 backhand index pointing right: dark skin tone # 👆 backhand index pointing up # 👆🏻 backhand index pointing up: light skin tone # 👆🏌 backhand index pointing up: medium-light skin tone # 👆🏜 backhand index pointing up: medium skin tone # 👆🏟 backhand index pointing up: medium-dark skin tone # 👆🏿 backhand index pointing up: dark skin tone # 🖕 middle finger # 🖕🏻 middle finger: light skin tone # 🖕🏌 middle finger: medium-light skin tone # 🖕🏜 middle finger: medium skin tone # 🖕🏟 middle finger: medium-dark skin tone # 🖕🏿 middle finger: dark skin tone # 👇 backhand index pointing down # 👇🏻 backhand index pointing down: light skin tone # 👇🏌 backhand index pointing down: medium-light skin tone # 👇🏜 backhand index pointing down: medium skin tone # 👇🏟 backhand index pointing down: medium-dark skin tone # 👇🏿 backhand index pointing down: dark skin tone # ☝ index pointing up # ☝ index pointing up # ☝🏻 index pointing up: light skin tone # ☝🏌 index pointing up: medium-light skin tone # ☝🏜 index pointing up: medium skin tone # ☝🏟 index pointing up: medium-dark skin tone # ☝🏿 index pointing up: dark skin tone # subgroup: hand-fingers-closed # 👍 thumbs up # 👍🏻 thumbs up: light skin tone # 👍🏌 thumbs up: medium-light skin tone # 👍🏜 thumbs up: medium skin tone # 👍🏟 thumbs up: medium-dark skin tone # 👍🏿 thumbs up: dark skin tone # 👎 thumbs down # 👎🏻 thumbs down: light skin tone # 👎🏌 thumbs down: medium-light skin tone # 👎🏜 thumbs down: medium skin tone # 👎🏟 thumbs down: medium-dark skin tone # 👎🏿 thumbs down: dark skin tone # ✊ raised fist # ✊🏻 raised fist: light skin tone # ✊🏌 raised fist: medium-light skin tone # ✊🏜 raised fist: medium skin tone # ✊🏟 raised fist: medium-dark skin tone # ✊🏿 raised fist: dark skin tone # 👊 oncoming fist # 👊🏻 oncoming fist: light skin tone # 👊🏌 oncoming fist: medium-light skin tone # 👊🏜 oncoming fist: medium skin tone # 👊🏟 oncoming fist: medium-dark skin tone # 👊🏿 oncoming fist: dark skin tone # 🀛 left-facing fist # 🀛🏻 left-facing fist: light skin tone # 🀛🏌 left-facing fist: medium-light skin tone # 🀛🏜 left-facing fist: medium skin tone # 🀛🏟 left-facing fist: medium-dark skin tone # 🀛🏿 left-facing fist: dark skin tone # 🀜 right-facing fist # 🀜🏻 right-facing fist: light skin tone # 🀜🏌 right-facing fist: medium-light skin tone # 🀜🏜 right-facing fist: medium skin tone # 🀜🏟 right-facing fist: medium-dark skin tone # 🀜🏿 right-facing fist: dark skin tone # subgroup: hands # 👏 clapping hands # 👏🏻 clapping hands: light skin tone # 👏🏌 clapping hands: medium-light skin tone # 👏🏜 clapping hands: medium skin tone # 👏🏟 clapping hands: medium-dark skin tone # 👏🏿 clapping hands: dark skin tone # 🙌 raising hands # 🙌🏻 raising hands: light skin tone # 🙌🏌 raising hands: medium-light skin tone # 🙌🏜 raising hands: medium skin tone # 🙌🏟 raising hands: medium-dark skin tone # 🙌🏿 raising hands: dark skin tone # 👐 open hands # 👐🏻 open hands: light skin tone # 👐🏌 open hands: medium-light skin tone # 👐🏜 open hands: medium skin tone # 👐🏟 open hands: medium-dark skin tone # 👐🏿 open hands: dark skin tone # 🀲 palms up together # 🀲🏻 palms up together: light skin tone # 🀲🏌 palms up together: medium-light skin tone # 🀲🏜 palms up together: medium skin tone # 🀲🏟 palms up together: medium-dark skin tone # 🀲🏿 palms up together: dark skin tone # 🀝 handshake # 🙏 folded hands # 🙏🏻 folded hands: light skin tone # 🙏🏌 folded hands: medium-light skin tone # 🙏🏜 folded hands: medium skin tone # 🙏🏟 folded hands: medium-dark skin tone # 🙏🏿 folded hands: dark skin tone # subgroup: hand-prop # ✍ writing hand # ✍ writing hand # ✍🏻 writing hand: light skin tone # ✍🏌 writing hand: medium-light skin tone # ✍🏜 writing hand: medium skin tone # ✍🏟 writing hand: medium-dark skin tone # ✍🏿 writing hand: dark skin tone # 💅 nail polish # 💅🏻 nail polish: light skin tone # 💅🏌 nail polish: medium-light skin tone # 💅🏜 nail polish: medium skin tone # 💅🏟 nail polish: medium-dark skin tone # 💅🏿 nail polish: dark skin tone # 🀳 selfie # 🀳🏻 selfie: light skin tone # 🀳🏌 selfie: medium-light skin tone # 🀳🏜 selfie: medium skin tone # 🀳🏟 selfie: medium-dark skin tone # 🀳🏿 selfie: dark skin tone # subgroup: body-parts # 💪 flexed biceps # 💪🏻 flexed biceps: light skin tone # 💪🏌 flexed biceps: medium-light skin tone # 💪🏜 flexed biceps: medium skin tone # 💪🏟 flexed biceps: medium-dark skin tone # 💪🏿 flexed biceps: dark skin tone # 🊟 mechanical arm # 🊿 mechanical leg # 🊵 leg # 🊵🏻 leg: light skin tone # 🊵🏌 leg: medium-light skin tone # 🊵🏜 leg: medium skin tone # 🊵🏟 leg: medium-dark skin tone # 🊵🏿 leg: dark skin tone # 🊶 foot # 🊶🏻 foot: light skin tone # 🊶🏌 foot: medium-light skin tone # 🊶🏜 foot: medium skin tone # 🊶🏟 foot: medium-dark skin tone # 🊶🏿 foot: dark skin tone # 👂 ear # 👂🏻 ear: light skin tone # 👂🏌 ear: medium-light skin tone # 👂🏜 ear: medium skin tone # 👂🏟 ear: medium-dark skin tone # 👂🏿 ear: dark skin tone # 🊻 ear with hearing aid # 🊻🏻 ear with hearing aid: light skin tone # 🊻🏌 ear with hearing aid: medium-light skin tone # 🊻🏜 ear with hearing aid: medium skin tone # 🊻🏟 ear with hearing aid: medium-dark skin tone # 🊻🏿 ear with hearing aid: dark skin tone # 👃 nose # 👃🏻 nose: light skin tone # 👃🏌 nose: medium-light skin tone # 👃🏜 nose: medium skin tone # 👃🏟 nose: medium-dark skin tone # 👃🏿 nose: dark skin tone # 🧠 brain # 🊷 tooth # 🊎 bone # 👀 eyes # 👁 eye # 👁 eye # 👅 tongue # 👄 mouth # subgroup: person # 👶 baby # 👶🏻 baby: light skin tone # 👶🏌 baby: medium-light skin tone # 👶🏜 baby: medium skin tone # 👶🏟 baby: medium-dark skin tone # 👶🏿 baby: dark skin tone # 🧒 child # 🧒🏻 child: light skin tone # 🧒🏌 child: medium-light skin tone # 🧒🏜 child: medium skin tone # 🧒🏟 child: medium-dark skin tone # 🧒🏿 child: dark skin tone # 👊 boy # 👊🏻 boy: light skin tone # 👊🏌 boy: medium-light skin tone # 👊🏜 boy: medium skin tone # 👊🏟 boy: medium-dark skin tone # 👊🏿 boy: dark skin tone # 👧 girl # 👧🏻 girl: light skin tone # 👧🏌 girl: medium-light skin tone # 👧🏜 girl: medium skin tone # 👧🏟 girl: medium-dark skin tone # 👧🏿 girl: dark skin tone # 🧑 person # 🧑🏻 person: light skin tone # 🧑🏌 person: medium-light skin tone # 🧑🏜 person: medium skin tone # 🧑🏟 person: medium-dark skin tone # 🧑🏿 person: dark skin tone # 👱 person: blond hair # 👱🏻 person: light skin tone, blond hair # 👱🏌 person: medium-light skin tone, blond hair # 👱🏜 person: medium skin tone, blond hair # 👱🏟 person: medium-dark skin tone, blond hair # 👱🏿 person: dark skin tone, blond hair # 👚 man # 👚🏻 man: light skin tone # 👚🏌 man: medium-light skin tone # 👚🏜 man: medium skin tone # 👚🏟 man: medium-dark skin tone # 👚🏿 man: dark skin tone # 🧔 man: beard # 🧔🏻 man: light skin tone, beard # 🧔🏌 man: medium-light skin tone, beard # 🧔🏜 man: medium skin tone, beard # 🧔🏟 man: medium-dark skin tone, beard # 🧔🏿 man: dark skin tone, beard # 👱‍♂ man: blond hair # 👱‍♂ man: blond hair # 👱🏻‍♂ man: light skin tone, blond hair # 👱🏻‍♂ man: light skin tone, blond hair # 👱🏌‍♂ man: medium-light skin tone, blond hair # 👱🏌‍♂ man: medium-light skin tone, blond hair # 👱🏜‍♂ man: medium skin tone, blond hair # 👱🏜‍♂ man: medium skin tone, blond hair # 👱🏟‍♂ man: medium-dark skin tone, blond hair # 👱🏟‍♂ man: medium-dark skin tone, blond hair # 👱🏿‍♂ man: dark skin tone, blond hair # 👱🏿‍♂ man: dark skin tone, blond hair # 👚‍🊰 man: red hair # 👚🏻‍🊰 man: light skin tone, red hair # 👚🏌‍🊰 man: medium-light skin tone, red hair # 👚🏜‍🊰 man: medium skin tone, red hair # 👚🏟‍🊰 man: medium-dark skin tone, red hair # 👚🏿‍🊰 man: dark skin tone, red hair # 👚‍🊱 man: curly hair # 👚🏻‍🊱 man: light skin tone, curly hair # 👚🏌‍🊱 man: medium-light skin tone, curly hair # 👚🏜‍🊱 man: medium skin tone, curly hair # 👚🏟‍🊱 man: medium-dark skin tone, curly hair # 👚🏿‍🊱 man: dark skin tone, curly hair # 👚‍🊳 man: white hair # 👚🏻‍🊳 man: light skin tone, white hair # 👚🏌‍🊳 man: medium-light skin tone, white hair # 👚🏜‍🊳 man: medium skin tone, white hair # 👚🏟‍🊳 man: medium-dark skin tone, white hair # 👚🏿‍🊳 man: dark skin tone, white hair # 👚‍🊲 man: bald # 👚🏻‍🊲 man: light skin tone, bald # 👚🏌‍🊲 man: medium-light skin tone, bald # 👚🏜‍🊲 man: medium skin tone, bald # 👚🏟‍🊲 man: medium-dark skin tone, bald # 👚🏿‍🊲 man: dark skin tone, bald # 👩 woman # 👩🏻 woman: light skin tone # 👩🏌 woman: medium-light skin tone # 👩🏜 woman: medium skin tone # 👩🏟 woman: medium-dark skin tone # 👩🏿 woman: dark skin tone # 👱‍♀ woman: blond hair # 👱‍♀ woman: blond hair # 👱🏻‍♀ woman: light skin tone, blond hair # 👱🏻‍♀ woman: light skin tone, blond hair # 👱🏌‍♀ woman: medium-light skin tone, blond hair # 👱🏌‍♀ woman: medium-light skin tone, blond hair # 👱🏜‍♀ woman: medium skin tone, blond hair # 👱🏜‍♀ woman: medium skin tone, blond hair # 👱🏟‍♀ woman: medium-dark skin tone, blond hair # 👱🏟‍♀ woman: medium-dark skin tone, blond hair # 👱🏿‍♀ woman: dark skin tone, blond hair # 👱🏿‍♀ woman: dark skin tone, blond hair # 👩‍🊰 woman: red hair # 👩🏻‍🊰 woman: light skin tone, red hair # 👩🏌‍🊰 woman: medium-light skin tone, red hair # 👩🏜‍🊰 woman: medium skin tone, red hair # 👩🏟‍🊰 woman: medium-dark skin tone, red hair # 👩🏿‍🊰 woman: dark skin tone, red hair # 👩‍🊱 woman: curly hair # 👩🏻‍🊱 woman: light skin tone, curly hair # 👩🏌‍🊱 woman: medium-light skin tone, curly hair # 👩🏜‍🊱 woman: medium skin tone, curly hair # 👩🏟‍🊱 woman: medium-dark skin tone, curly hair # 👩🏿‍🊱 woman: dark skin tone, curly hair # 👩‍🊳 woman: white hair # 👩🏻‍🊳 woman: light skin tone, white hair # 👩🏌‍🊳 woman: medium-light skin tone, white hair # 👩🏜‍🊳 woman: medium skin tone, white hair # 👩🏟‍🊳 woman: medium-dark skin tone, white hair # 👩🏿‍🊳 woman: dark skin tone, white hair # 👩‍🊲 woman: bald # 👩🏻‍🊲 woman: light skin tone, bald # 👩🏌‍🊲 woman: medium-light skin tone, bald # 👩🏜‍🊲 woman: medium skin tone, bald # 👩🏟‍🊲 woman: medium-dark skin tone, bald # 👩🏿‍🊲 woman: dark skin tone, bald # 🧓 older person # 🧓🏻 older person: light skin tone # 🧓🏌 older person: medium-light skin tone # 🧓🏜 older person: medium skin tone # 🧓🏟 older person: medium-dark skin tone # 🧓🏿 older person: dark skin tone # 👎 old man # 👎🏻 old man: light skin tone # 👎🏌 old man: medium-light skin tone # 👎🏜 old man: medium skin tone # 👎🏟 old man: medium-dark skin tone # 👎🏿 old man: dark skin tone # 👵 old woman # 👵🏻 old woman: light skin tone # 👵🏌 old woman: medium-light skin tone # 👵🏜 old woman: medium skin tone # 👵🏟 old woman: medium-dark skin tone # 👵🏿 old woman: dark skin tone # subgroup: person-gesture # 🙍 person frowning # 🙍🏻 person frowning: light skin tone # 🙍🏌 person frowning: medium-light skin tone # 🙍🏜 person frowning: medium skin tone # 🙍🏟 person frowning: medium-dark skin tone # 🙍🏿 person frowning: dark skin tone # 🙍‍♂ man frowning # 🙍‍♂ man frowning # 🙍🏻‍♂ man frowning: light skin tone # 🙍🏻‍♂ man frowning: light skin tone # 🙍🏌‍♂ man frowning: medium-light skin tone # 🙍🏌‍♂ man frowning: medium-light skin tone # 🙍🏜‍♂ man frowning: medium skin tone # 🙍🏜‍♂ man frowning: medium skin tone # 🙍🏟‍♂ man frowning: medium-dark skin tone # 🙍🏟‍♂ man frowning: medium-dark skin tone # 🙍🏿‍♂ man frowning: dark skin tone # 🙍🏿‍♂ man frowning: dark skin tone # 🙍‍♀ woman frowning # 🙍‍♀ woman frowning # 🙍🏻‍♀ woman frowning: light skin tone # 🙍🏻‍♀ woman frowning: light skin tone # 🙍🏌‍♀ woman frowning: medium-light skin tone # 🙍🏌‍♀ woman frowning: medium-light skin tone # 🙍🏜‍♀ woman frowning: medium skin tone # 🙍🏜‍♀ woman frowning: medium skin tone # 🙍🏟‍♀ woman frowning: medium-dark skin tone # 🙍🏟‍♀ woman frowning: medium-dark skin tone # 🙍🏿‍♀ woman frowning: dark skin tone # 🙍🏿‍♀ woman frowning: dark skin tone # 🙎 person pouting # 🙎🏻 person pouting: light skin tone # 🙎🏌 person pouting: medium-light skin tone # 🙎🏜 person pouting: medium skin tone # 🙎🏟 person pouting: medium-dark skin tone # 🙎🏿 person pouting: dark skin tone # 🙎‍♂ man pouting # 🙎‍♂ man pouting # 🙎🏻‍♂ man pouting: light skin tone # 🙎🏻‍♂ man pouting: light skin tone # 🙎🏌‍♂ man pouting: medium-light skin tone # 🙎🏌‍♂ man pouting: medium-light skin tone # 🙎🏜‍♂ man pouting: medium skin tone # 🙎🏜‍♂ man pouting: medium skin tone # 🙎🏟‍♂ man pouting: medium-dark skin tone # 🙎🏟‍♂ man pouting: medium-dark skin tone # 🙎🏿‍♂ man pouting: dark skin tone # 🙎🏿‍♂ man pouting: dark skin tone # 🙎‍♀ woman pouting # 🙎‍♀ woman pouting # 🙎🏻‍♀ woman pouting: light skin tone # 🙎🏻‍♀ woman pouting: light skin tone # 🙎🏌‍♀ woman pouting: medium-light skin tone # 🙎🏌‍♀ woman pouting: medium-light skin tone # 🙎🏜‍♀ woman pouting: medium skin tone # 🙎🏜‍♀ woman pouting: medium skin tone # 🙎🏟‍♀ woman pouting: medium-dark skin tone # 🙎🏟‍♀ woman pouting: medium-dark skin tone # 🙎🏿‍♀ woman pouting: dark skin tone # 🙎🏿‍♀ woman pouting: dark skin tone # 🙅 person gesturing NO # 🙅🏻 person gesturing NO: light skin tone # 🙅🏌 person gesturing NO: medium-light skin tone # 🙅🏜 person gesturing NO: medium skin tone # 🙅🏟 person gesturing NO: medium-dark skin tone # 🙅🏿 person gesturing NO: dark skin tone # 🙅‍♂ man gesturing NO # 🙅‍♂ man gesturing NO # 🙅🏻‍♂ man gesturing NO: light skin tone # 🙅🏻‍♂ man gesturing NO: light skin tone # 🙅🏌‍♂ man gesturing NO: medium-light skin tone # 🙅🏌‍♂ man gesturing NO: medium-light skin tone # 🙅🏜‍♂ man gesturing NO: medium skin tone # 🙅🏜‍♂ man gesturing NO: medium skin tone # 🙅🏟‍♂ man gesturing NO: medium-dark skin tone # 🙅🏟‍♂ man gesturing NO: medium-dark skin tone # 🙅🏿‍♂ man gesturing NO: dark skin tone # 🙅🏿‍♂ man gesturing NO: dark skin tone # 🙅‍♀ woman gesturing NO # 🙅‍♀ woman gesturing NO # 🙅🏻‍♀ woman gesturing NO: light skin tone # 🙅🏻‍♀ woman gesturing NO: light skin tone # 🙅🏌‍♀ woman gesturing NO: medium-light skin tone # 🙅🏌‍♀ woman gesturing NO: medium-light skin tone # 🙅🏜‍♀ woman gesturing NO: medium skin tone # 🙅🏜‍♀ woman gesturing NO: medium skin tone # 🙅🏟‍♀ woman gesturing NO: medium-dark skin tone # 🙅🏟‍♀ woman gesturing NO: medium-dark skin tone # 🙅🏿‍♀ woman gesturing NO: dark skin tone # 🙅🏿‍♀ woman gesturing NO: dark skin tone # 🙆 person gesturing OK # 🙆🏻 person gesturing OK: light skin tone # 🙆🏌 person gesturing OK: medium-light skin tone # 🙆🏜 person gesturing OK: medium skin tone # 🙆🏟 person gesturing OK: medium-dark skin tone # 🙆🏿 person gesturing OK: dark skin tone # 🙆‍♂ man gesturing OK # 🙆‍♂ man gesturing OK # 🙆🏻‍♂ man gesturing OK: light skin tone # 🙆🏻‍♂ man gesturing OK: light skin tone # 🙆🏌‍♂ man gesturing OK: medium-light skin tone # 🙆🏌‍♂ man gesturing OK: medium-light skin tone # 🙆🏜‍♂ man gesturing OK: medium skin tone # 🙆🏜‍♂ man gesturing OK: medium skin tone # 🙆🏟‍♂ man gesturing OK: medium-dark skin tone # 🙆🏟‍♂ man gesturing OK: medium-dark skin tone # 🙆🏿‍♂ man gesturing OK: dark skin tone # 🙆🏿‍♂ man gesturing OK: dark skin tone # 🙆‍♀ woman gesturing OK # 🙆‍♀ woman gesturing OK # 🙆🏻‍♀ woman gesturing OK: light skin tone # 🙆🏻‍♀ woman gesturing OK: light skin tone # 🙆🏌‍♀ woman gesturing OK: medium-light skin tone # 🙆🏌‍♀ woman gesturing OK: medium-light skin tone # 🙆🏜‍♀ woman gesturing OK: medium skin tone # 🙆🏜‍♀ woman gesturing OK: medium skin tone # 🙆🏟‍♀ woman gesturing OK: medium-dark skin tone # 🙆🏟‍♀ woman gesturing OK: medium-dark skin tone # 🙆🏿‍♀ woman gesturing OK: dark skin tone # 🙆🏿‍♀ woman gesturing OK: dark skin tone # 💁 person tipping hand # 💁🏻 person tipping hand: light skin tone # 💁🏌 person tipping hand: medium-light skin tone # 💁🏜 person tipping hand: medium skin tone # 💁🏟 person tipping hand: medium-dark skin tone # 💁🏿 person tipping hand: dark skin tone # 💁‍♂ man tipping hand # 💁‍♂ man tipping hand # 💁🏻‍♂ man tipping hand: light skin tone # 💁🏻‍♂ man tipping hand: light skin tone # 💁🏌‍♂ man tipping hand: medium-light skin tone # 💁🏌‍♂ man tipping hand: medium-light skin tone # 💁🏜‍♂ man tipping hand: medium skin tone # 💁🏜‍♂ man tipping hand: medium skin tone # 💁🏟‍♂ man tipping hand: medium-dark skin tone # 💁🏟‍♂ man tipping hand: medium-dark skin tone # 💁🏿‍♂ man tipping hand: dark skin tone # 💁🏿‍♂ man tipping hand: dark skin tone # 💁‍♀ woman tipping hand # 💁‍♀ woman tipping hand # 💁🏻‍♀ woman tipping hand: light skin tone # 💁🏻‍♀ woman tipping hand: light skin tone # 💁🏌‍♀ woman tipping hand: medium-light skin tone # 💁🏌‍♀ woman tipping hand: medium-light skin tone # 💁🏜‍♀ woman tipping hand: medium skin tone # 💁🏜‍♀ woman tipping hand: medium skin tone # 💁🏟‍♀ woman tipping hand: medium-dark skin tone # 💁🏟‍♀ woman tipping hand: medium-dark skin tone # 💁🏿‍♀ woman tipping hand: dark skin tone # 💁🏿‍♀ woman tipping hand: dark skin tone # 🙋 person raising hand # 🙋🏻 person raising hand: light skin tone # 🙋🏌 person raising hand: medium-light skin tone # 🙋🏜 person raising hand: medium skin tone # 🙋🏟 person raising hand: medium-dark skin tone # 🙋🏿 person raising hand: dark skin tone # 🙋‍♂ man raising hand # 🙋‍♂ man raising hand # 🙋🏻‍♂ man raising hand: light skin tone # 🙋🏻‍♂ man raising hand: light skin tone # 🙋🏌‍♂ man raising hand: medium-light skin tone # 🙋🏌‍♂ man raising hand: medium-light skin tone # 🙋🏜‍♂ man raising hand: medium skin tone # 🙋🏜‍♂ man raising hand: medium skin tone # 🙋🏟‍♂ man raising hand: medium-dark skin tone # 🙋🏟‍♂ man raising hand: medium-dark skin tone # 🙋🏿‍♂ man raising hand: dark skin tone # 🙋🏿‍♂ man raising hand: dark skin tone # 🙋‍♀ woman raising hand # 🙋‍♀ woman raising hand # 🙋🏻‍♀ woman raising hand: light skin tone # 🙋🏻‍♀ woman raising hand: light skin tone # 🙋🏌‍♀ woman raising hand: medium-light skin tone # 🙋🏌‍♀ woman raising hand: medium-light skin tone # 🙋🏜‍♀ woman raising hand: medium skin tone # 🙋🏜‍♀ woman raising hand: medium skin tone # 🙋🏟‍♀ woman raising hand: medium-dark skin tone # 🙋🏟‍♀ woman raising hand: medium-dark skin tone # 🙋🏿‍♀ woman raising hand: dark skin tone # 🙋🏿‍♀ woman raising hand: dark skin tone # 🧏 deaf person # 🧏🏻 deaf person: light skin tone # 🧏🏌 deaf person: medium-light skin tone # 🧏🏜 deaf person: medium skin tone # 🧏🏟 deaf person: medium-dark skin tone # 🧏🏿 deaf person: dark skin tone # 🧏‍♂ deaf man # 🧏‍♂ deaf man # 🧏🏻‍♂ deaf man: light skin tone # 🧏🏻‍♂ deaf man: light skin tone # 🧏🏌‍♂ deaf man: medium-light skin tone # 🧏🏌‍♂ deaf man: medium-light skin tone # 🧏🏜‍♂ deaf man: medium skin tone # 🧏🏜‍♂ deaf man: medium skin tone # 🧏🏟‍♂ deaf man: medium-dark skin tone # 🧏🏟‍♂ deaf man: medium-dark skin tone # 🧏🏿‍♂ deaf man: dark skin tone # 🧏🏿‍♂ deaf man: dark skin tone # 🧏‍♀ deaf woman # 🧏‍♀ deaf woman # 🧏🏻‍♀ deaf woman: light skin tone # 🧏🏻‍♀ deaf woman: light skin tone # 🧏🏌‍♀ deaf woman: medium-light skin tone # 🧏🏌‍♀ deaf woman: medium-light skin tone # 🧏🏜‍♀ deaf woman: medium skin tone # 🧏🏜‍♀ deaf woman: medium skin tone # 🧏🏟‍♀ deaf woman: medium-dark skin tone # 🧏🏟‍♀ deaf woman: medium-dark skin tone # 🧏🏿‍♀ deaf woman: dark skin tone # 🧏🏿‍♀ deaf woman: dark skin tone # 🙇 person bowing # 🙇🏻 person bowing: light skin tone # 🙇🏌 person bowing: medium-light skin tone # 🙇🏜 person bowing: medium skin tone # 🙇🏟 person bowing: medium-dark skin tone # 🙇🏿 person bowing: dark skin tone # 🙇‍♂ man bowing # 🙇‍♂ man bowing # 🙇🏻‍♂ man bowing: light skin tone # 🙇🏻‍♂ man bowing: light skin tone # 🙇🏌‍♂ man bowing: medium-light skin tone # 🙇🏌‍♂ man bowing: medium-light skin tone # 🙇🏜‍♂ man bowing: medium skin tone # 🙇🏜‍♂ man bowing: medium skin tone # 🙇🏟‍♂ man bowing: medium-dark skin tone # 🙇🏟‍♂ man bowing: medium-dark skin tone # 🙇🏿‍♂ man bowing: dark skin tone # 🙇🏿‍♂ man bowing: dark skin tone # 🙇‍♀ woman bowing # 🙇‍♀ woman bowing # 🙇🏻‍♀ woman bowing: light skin tone # 🙇🏻‍♀ woman bowing: light skin tone # 🙇🏌‍♀ woman bowing: medium-light skin tone # 🙇🏌‍♀ woman bowing: medium-light skin tone # 🙇🏜‍♀ woman bowing: medium skin tone # 🙇🏜‍♀ woman bowing: medium skin tone # 🙇🏟‍♀ woman bowing: medium-dark skin tone # 🙇🏟‍♀ woman bowing: medium-dark skin tone # 🙇🏿‍♀ woman bowing: dark skin tone # 🙇🏿‍♀ woman bowing: dark skin tone # 🀊 person facepalming # 🀊🏻 person facepalming: light skin tone # 🀊🏌 person facepalming: medium-light skin tone # 🀊🏜 person facepalming: medium skin tone # 🀊🏟 person facepalming: medium-dark skin tone # 🀊🏿 person facepalming: dark skin tone # 🀊‍♂ man facepalming # 🀊‍♂ man facepalming # 🀊🏻‍♂ man facepalming: light skin tone # 🀊🏻‍♂ man facepalming: light skin tone # 🀊🏌‍♂ man facepalming: medium-light skin tone # 🀊🏌‍♂ man facepalming: medium-light skin tone # 🀊🏜‍♂ man facepalming: medium skin tone # 🀊🏜‍♂ man facepalming: medium skin tone # 🀊🏟‍♂ man facepalming: medium-dark skin tone # 🀊🏟‍♂ man facepalming: medium-dark skin tone # 🀊🏿‍♂ man facepalming: dark skin tone # 🀊🏿‍♂ man facepalming: dark skin tone # 🀊‍♀ woman facepalming # 🀊‍♀ woman facepalming # 🀊🏻‍♀ woman facepalming: light skin tone # 🀊🏻‍♀ woman facepalming: light skin tone # 🀊🏌‍♀ woman facepalming: medium-light skin tone # 🀊🏌‍♀ woman facepalming: medium-light skin tone # 🀊🏜‍♀ woman facepalming: medium skin tone # 🀊🏜‍♀ woman facepalming: medium skin tone # 🀊🏟‍♀ woman facepalming: medium-dark skin tone # 🀊🏟‍♀ woman facepalming: medium-dark skin tone # 🀊🏿‍♀ woman facepalming: dark skin tone # 🀊🏿‍♀ woman facepalming: dark skin tone # 🀷 person shrugging # 🀷🏻 person shrugging: light skin tone # 🀷🏌 person shrugging: medium-light skin tone # 🀷🏜 person shrugging: medium skin tone # 🀷🏟 person shrugging: medium-dark skin tone # 🀷🏿 person shrugging: dark skin tone # 🀷‍♂ man shrugging # 🀷‍♂ man shrugging # 🀷🏻‍♂ man shrugging: light skin tone # 🀷🏻‍♂ man shrugging: light skin tone # 🀷🏌‍♂ man shrugging: medium-light skin tone # 🀷🏌‍♂ man shrugging: medium-light skin tone # 🀷🏜‍♂ man shrugging: medium skin tone # 🀷🏜‍♂ man shrugging: medium skin tone # 🀷🏟‍♂ man shrugging: medium-dark skin tone # 🀷🏟‍♂ man shrugging: medium-dark skin tone # 🀷🏿‍♂ man shrugging: dark skin tone # 🀷🏿‍♂ man shrugging: dark skin tone # 🀷‍♀ woman shrugging # 🀷‍♀ woman shrugging # 🀷🏻‍♀ woman shrugging: light skin tone # 🀷🏻‍♀ woman shrugging: light skin tone # 🀷🏌‍♀ woman shrugging: medium-light skin tone # 🀷🏌‍♀ woman shrugging: medium-light skin tone # 🀷🏜‍♀ woman shrugging: medium skin tone # 🀷🏜‍♀ woman shrugging: medium skin tone # 🀷🏟‍♀ woman shrugging: medium-dark skin tone # 🀷🏟‍♀ woman shrugging: medium-dark skin tone # 🀷🏿‍♀ woman shrugging: dark skin tone # 🀷🏿‍♀ woman shrugging: dark skin tone # subgroup: person-role # 👚‍⚕ man health worker # 👚‍⚕ man health worker # 👚🏻‍⚕ man health worker: light skin tone # 👚🏻‍⚕ man health worker: light skin tone # 👚🏌‍⚕ man health worker: medium-light skin tone # 👚🏌‍⚕ man health worker: medium-light skin tone # 👚🏜‍⚕ man health worker: medium skin tone # 👚🏜‍⚕ man health worker: medium skin tone # 👚🏟‍⚕ man health worker: medium-dark skin tone # 👚🏟‍⚕ man health worker: medium-dark skin tone # 👚🏿‍⚕ man health worker: dark skin tone # 👚🏿‍⚕ man health worker: dark skin tone # 👩‍⚕ woman health worker # 👩‍⚕ woman health worker # 👩🏻‍⚕ woman health worker: light skin tone # 👩🏻‍⚕ woman health worker: light skin tone # 👩🏌‍⚕ woman health worker: medium-light skin tone # 👩🏌‍⚕ woman health worker: medium-light skin tone # 👩🏜‍⚕ woman health worker: medium skin tone # 👩🏜‍⚕ woman health worker: medium skin tone # 👩🏟‍⚕ woman health worker: medium-dark skin tone # 👩🏟‍⚕ woman health worker: medium-dark skin tone # 👩🏿‍⚕ woman health worker: dark skin tone # 👩🏿‍⚕ woman health worker: dark skin tone # 👚‍🎓 man student # 👚🏻‍🎓 man student: light skin tone # 👚🏌‍🎓 man student: medium-light skin tone # 👚🏜‍🎓 man student: medium skin tone # 👚🏟‍🎓 man student: medium-dark skin tone # 👚🏿‍🎓 man student: dark skin tone # 👩‍🎓 woman student # 👩🏻‍🎓 woman student: light skin tone # 👩🏌‍🎓 woman student: medium-light skin tone # 👩🏜‍🎓 woman student: medium skin tone # 👩🏟‍🎓 woman student: medium-dark skin tone # 👩🏿‍🎓 woman student: dark skin tone # 👚‍🏫 man teacher # 👚🏻‍🏫 man teacher: light skin tone # 👚🏌‍🏫 man teacher: medium-light skin tone # 👚🏜‍🏫 man teacher: medium skin tone # 👚🏟‍🏫 man teacher: medium-dark skin tone # 👚🏿‍🏫 man teacher: dark skin tone # 👩‍🏫 woman teacher # 👩🏻‍🏫 woman teacher: light skin tone # 👩🏌‍🏫 woman teacher: medium-light skin tone # 👩🏜‍🏫 woman teacher: medium skin tone # 👩🏟‍🏫 woman teacher: medium-dark skin tone # 👩🏿‍🏫 woman teacher: dark skin tone # 👚‍⚖ man judge # 👚‍⚖ man judge # 👚🏻‍⚖ man judge: light skin tone # 👚🏻‍⚖ man judge: light skin tone # 👚🏌‍⚖ man judge: medium-light skin tone # 👚🏌‍⚖ man judge: medium-light skin tone # 👚🏜‍⚖ man judge: medium skin tone # 👚🏜‍⚖ man judge: medium skin tone # 👚🏟‍⚖ man judge: medium-dark skin tone # 👚🏟‍⚖ man judge: medium-dark skin tone # 👚🏿‍⚖ man judge: dark skin tone # 👚🏿‍⚖ man judge: dark skin tone # 👩‍⚖ woman judge # 👩‍⚖ woman judge # 👩🏻‍⚖ woman judge: light skin tone # 👩🏻‍⚖ woman judge: light skin tone # 👩🏌‍⚖ woman judge: medium-light skin tone # 👩🏌‍⚖ woman judge: medium-light skin tone # 👩🏜‍⚖ woman judge: medium skin tone # 👩🏜‍⚖ woman judge: medium skin tone # 👩🏟‍⚖ woman judge: medium-dark skin tone # 👩🏟‍⚖ woman judge: medium-dark skin tone # 👩🏿‍⚖ woman judge: dark skin tone # 👩🏿‍⚖ woman judge: dark skin tone # 👚‍🌟 man farmer # 👚🏻‍🌟 man farmer: light skin tone # 👚🏌‍🌟 man farmer: medium-light skin tone # 👚🏜‍🌟 man farmer: medium skin tone # 👚🏟‍🌟 man farmer: medium-dark skin tone # 👚🏿‍🌟 man farmer: dark skin tone # 👩‍🌟 woman farmer # 👩🏻‍🌟 woman farmer: light skin tone # 👩🏌‍🌟 woman farmer: medium-light skin tone # 👩🏜‍🌟 woman farmer: medium skin tone # 👩🏟‍🌟 woman farmer: medium-dark skin tone # 👩🏿‍🌟 woman farmer: dark skin tone # 👚‍🍳 man cook # 👚🏻‍🍳 man cook: light skin tone # 👚🏌‍🍳 man cook: medium-light skin tone # 👚🏜‍🍳 man cook: medium skin tone # 👚🏟‍🍳 man cook: medium-dark skin tone # 👚🏿‍🍳 man cook: dark skin tone # 👩‍🍳 woman cook # 👩🏻‍🍳 woman cook: light skin tone # 👩🏌‍🍳 woman cook: medium-light skin tone # 👩🏜‍🍳 woman cook: medium skin tone # 👩🏟‍🍳 woman cook: medium-dark skin tone # 👩🏿‍🍳 woman cook: dark skin tone # 👚‍🔧 man mechanic # 👚🏻‍🔧 man mechanic: light skin tone # 👚🏌‍🔧 man mechanic: medium-light skin tone # 👚🏜‍🔧 man mechanic: medium skin tone # 👚🏟‍🔧 man mechanic: medium-dark skin tone # 👚🏿‍🔧 man mechanic: dark skin tone # 👩‍🔧 woman mechanic # 👩🏻‍🔧 woman mechanic: light skin tone # 👩🏌‍🔧 woman mechanic: medium-light skin tone # 👩🏜‍🔧 woman mechanic: medium skin tone # 👩🏟‍🔧 woman mechanic: medium-dark skin tone # 👩🏿‍🔧 woman mechanic: dark skin tone # 👚‍🏭 man factory worker # 👚🏻‍🏭 man factory worker: light skin tone # 👚🏌‍🏭 man factory worker: medium-light skin tone # 👚🏜‍🏭 man factory worker: medium skin tone # 👚🏟‍🏭 man factory worker: medium-dark skin tone # 👚🏿‍🏭 man factory worker: dark skin tone # 👩‍🏭 woman factory worker # 👩🏻‍🏭 woman factory worker: light skin tone # 👩🏌‍🏭 woman factory worker: medium-light skin tone # 👩🏜‍🏭 woman factory worker: medium skin tone # 👩🏟‍🏭 woman factory worker: medium-dark skin tone # 👩🏿‍🏭 woman factory worker: dark skin tone # 👚‍💌 man office worker # 👚🏻‍💌 man office worker: light skin tone # 👚🏌‍💌 man office worker: medium-light skin tone # 👚🏜‍💌 man office worker: medium skin tone # 👚🏟‍💌 man office worker: medium-dark skin tone # 👚🏿‍💌 man office worker: dark skin tone # 👩‍💌 woman office worker # 👩🏻‍💌 woman office worker: light skin tone # 👩🏌‍💌 woman office worker: medium-light skin tone # 👩🏜‍💌 woman office worker: medium skin tone # 👩🏟‍💌 woman office worker: medium-dark skin tone # 👩🏿‍💌 woman office worker: dark skin tone # 👚‍🔬 man scientist # 👚🏻‍🔬 man scientist: light skin tone # 👚🏌‍🔬 man scientist: medium-light skin tone # 👚🏜‍🔬 man scientist: medium skin tone # 👚🏟‍🔬 man scientist: medium-dark skin tone # 👚🏿‍🔬 man scientist: dark skin tone # 👩‍🔬 woman scientist # 👩🏻‍🔬 woman scientist: light skin tone # 👩🏌‍🔬 woman scientist: medium-light skin tone # 👩🏜‍🔬 woman scientist: medium skin tone # 👩🏟‍🔬 woman scientist: medium-dark skin tone # 👩🏿‍🔬 woman scientist: dark skin tone # 👚‍💻 man technologist # 👚🏻‍💻 man technologist: light skin tone # 👚🏌‍💻 man technologist: medium-light skin tone # 👚🏜‍💻 man technologist: medium skin tone # 👚🏟‍💻 man technologist: medium-dark skin tone # 👚🏿‍💻 man technologist: dark skin tone # 👩‍💻 woman technologist # 👩🏻‍💻 woman technologist: light skin tone # 👩🏌‍💻 woman technologist: medium-light skin tone # 👩🏜‍💻 woman technologist: medium skin tone # 👩🏟‍💻 woman technologist: medium-dark skin tone # 👩🏿‍💻 woman technologist: dark skin tone # 👚‍🎀 man singer # 👚🏻‍🎀 man singer: light skin tone # 👚🏌‍🎀 man singer: medium-light skin tone # 👚🏜‍🎀 man singer: medium skin tone # 👚🏟‍🎀 man singer: medium-dark skin tone # 👚🏿‍🎀 man singer: dark skin tone # 👩‍🎀 woman singer # 👩🏻‍🎀 woman singer: light skin tone # 👩🏌‍🎀 woman singer: medium-light skin tone # 👩🏜‍🎀 woman singer: medium skin tone # 👩🏟‍🎀 woman singer: medium-dark skin tone # 👩🏿‍🎀 woman singer: dark skin tone # 👚‍🎚 man artist # 👚🏻‍🎚 man artist: light skin tone # 👚🏌‍🎚 man artist: medium-light skin tone # 👚🏜‍🎚 man artist: medium skin tone # 👚🏟‍🎚 man artist: medium-dark skin tone # 👚🏿‍🎚 man artist: dark skin tone # 👩‍🎚 woman artist # 👩🏻‍🎚 woman artist: light skin tone # 👩🏌‍🎚 woman artist: medium-light skin tone # 👩🏜‍🎚 woman artist: medium skin tone # 👩🏟‍🎚 woman artist: medium-dark skin tone # 👩🏿‍🎚 woman artist: dark skin tone # 👚‍✈ man pilot # 👚‍✈ man pilot # 👚🏻‍✈ man pilot: light skin tone # 👚🏻‍✈ man pilot: light skin tone # 👚🏌‍✈ man pilot: medium-light skin tone # 👚🏌‍✈ man pilot: medium-light skin tone # 👚🏜‍✈ man pilot: medium skin tone # 👚🏜‍✈ man pilot: medium skin tone # 👚🏟‍✈ man pilot: medium-dark skin tone # 👚🏟‍✈ man pilot: medium-dark skin tone # 👚🏿‍✈ man pilot: dark skin tone # 👚🏿‍✈ man pilot: dark skin tone # 👩‍✈ woman pilot # 👩‍✈ woman pilot # 👩🏻‍✈ woman pilot: light skin tone # 👩🏻‍✈ woman pilot: light skin tone # 👩🏌‍✈ woman pilot: medium-light skin tone # 👩🏌‍✈ woman pilot: medium-light skin tone # 👩🏜‍✈ woman pilot: medium skin tone # 👩🏜‍✈ woman pilot: medium skin tone # 👩🏟‍✈ woman pilot: medium-dark skin tone # 👩🏟‍✈ woman pilot: medium-dark skin tone # 👩🏿‍✈ woman pilot: dark skin tone # 👩🏿‍✈ woman pilot: dark skin tone # 👚‍🚀 man astronaut # 👚🏻‍🚀 man astronaut: light skin tone # 👚🏌‍🚀 man astronaut: medium-light skin tone # 👚🏜‍🚀 man astronaut: medium skin tone # 👚🏟‍🚀 man astronaut: medium-dark skin tone # 👚🏿‍🚀 man astronaut: dark skin tone # 👩‍🚀 woman astronaut # 👩🏻‍🚀 woman astronaut: light skin tone # 👩🏌‍🚀 woman astronaut: medium-light skin tone # 👩🏜‍🚀 woman astronaut: medium skin tone # 👩🏟‍🚀 woman astronaut: medium-dark skin tone # 👩🏿‍🚀 woman astronaut: dark skin tone # 👚‍🚒 man firefighter # 👚🏻‍🚒 man firefighter: light skin tone # 👚🏌‍🚒 man firefighter: medium-light skin tone # 👚🏜‍🚒 man firefighter: medium skin tone # 👚🏟‍🚒 man firefighter: medium-dark skin tone # 👚🏿‍🚒 man firefighter: dark skin tone # 👩‍🚒 woman firefighter # 👩🏻‍🚒 woman firefighter: light skin tone # 👩🏌‍🚒 woman firefighter: medium-light skin tone # 👩🏜‍🚒 woman firefighter: medium skin tone # 👩🏟‍🚒 woman firefighter: medium-dark skin tone # 👩🏿‍🚒 woman firefighter: dark skin tone # 👮 police officer # 👮🏻 police officer: light skin tone # 👮🏌 police officer: medium-light skin tone # 👮🏜 police officer: medium skin tone # 👮🏟 police officer: medium-dark skin tone # 👮🏿 police officer: dark skin tone # 👮‍♂ man police officer # 👮‍♂ man police officer # 👮🏻‍♂ man police officer: light skin tone # 👮🏻‍♂ man police officer: light skin tone # 👮🏌‍♂ man police officer: medium-light skin tone # 👮🏌‍♂ man police officer: medium-light skin tone # 👮🏜‍♂ man police officer: medium skin tone # 👮🏜‍♂ man police officer: medium skin tone # 👮🏟‍♂ man police officer: medium-dark skin tone # 👮🏟‍♂ man police officer: medium-dark skin tone # 👮🏿‍♂ man police officer: dark skin tone # 👮🏿‍♂ man police officer: dark skin tone # 👮‍♀ woman police officer # 👮‍♀ woman police officer # 👮🏻‍♀ woman police officer: light skin tone # 👮🏻‍♀ woman police officer: light skin tone # 👮🏌‍♀ woman police officer: medium-light skin tone # 👮🏌‍♀ woman police officer: medium-light skin tone # 👮🏜‍♀ woman police officer: medium skin tone # 👮🏜‍♀ woman police officer: medium skin tone # 👮🏟‍♀ woman police officer: medium-dark skin tone # 👮🏟‍♀ woman police officer: medium-dark skin tone # 👮🏿‍♀ woman police officer: dark skin tone # 👮🏿‍♀ woman police officer: dark skin tone # 🕵 detective # 🕵 detective # 🕵🏻 detective: light skin tone # 🕵🏌 detective: medium-light skin tone # 🕵🏜 detective: medium skin tone # 🕵🏟 detective: medium-dark skin tone # 🕵🏿 detective: dark skin tone # 🕵‍♂ man detective # 🕵‍♂ man detective # 🕵‍♂ man detective # 🕵‍♂ man detective # 🕵🏻‍♂ man detective: light skin tone # 🕵🏻‍♂ man detective: light skin tone # 🕵🏌‍♂ man detective: medium-light skin tone # 🕵🏌‍♂ man detective: medium-light skin tone # 🕵🏜‍♂ man detective: medium skin tone # 🕵🏜‍♂ man detective: medium skin tone # 🕵🏟‍♂ man detective: medium-dark skin tone # 🕵🏟‍♂ man detective: medium-dark skin tone # 🕵🏿‍♂ man detective: dark skin tone # 🕵🏿‍♂ man detective: dark skin tone # 🕵‍♀ woman detective # 🕵‍♀ woman detective # 🕵‍♀ woman detective # 🕵‍♀ woman detective # 🕵🏻‍♀ woman detective: light skin tone # 🕵🏻‍♀ woman detective: light skin tone # 🕵🏌‍♀ woman detective: medium-light skin tone # 🕵🏌‍♀ woman detective: medium-light skin tone # 🕵🏜‍♀ woman detective: medium skin tone # 🕵🏜‍♀ woman detective: medium skin tone # 🕵🏟‍♀ woman detective: medium-dark skin tone # 🕵🏟‍♀ woman detective: medium-dark skin tone # 🕵🏿‍♀ woman detective: dark skin tone # 🕵🏿‍♀ woman detective: dark skin tone # 💂 guard # 💂🏻 guard: light skin tone # 💂🏌 guard: medium-light skin tone # 💂🏜 guard: medium skin tone # 💂🏟 guard: medium-dark skin tone # 💂🏿 guard: dark skin tone # 💂‍♂ man guard # 💂‍♂ man guard # 💂🏻‍♂ man guard: light skin tone # 💂🏻‍♂ man guard: light skin tone # 💂🏌‍♂ man guard: medium-light skin tone # 💂🏌‍♂ man guard: medium-light skin tone # 💂🏜‍♂ man guard: medium skin tone # 💂🏜‍♂ man guard: medium skin tone # 💂🏟‍♂ man guard: medium-dark skin tone # 💂🏟‍♂ man guard: medium-dark skin tone # 💂🏿‍♂ man guard: dark skin tone # 💂🏿‍♂ man guard: dark skin tone # 💂‍♀ woman guard # 💂‍♀ woman guard # 💂🏻‍♀ woman guard: light skin tone # 💂🏻‍♀ woman guard: light skin tone # 💂🏌‍♀ woman guard: medium-light skin tone # 💂🏌‍♀ woman guard: medium-light skin tone # 💂🏜‍♀ woman guard: medium skin tone # 💂🏜‍♀ woman guard: medium skin tone # 💂🏟‍♀ woman guard: medium-dark skin tone # 💂🏟‍♀ woman guard: medium-dark skin tone # 💂🏿‍♀ woman guard: dark skin tone # 💂🏿‍♀ woman guard: dark skin tone # 👷 construction worker # 👷🏻 construction worker: light skin tone # 👷🏌 construction worker: medium-light skin tone # 👷🏜 construction worker: medium skin tone # 👷🏟 construction worker: medium-dark skin tone # 👷🏿 construction worker: dark skin tone # 👷‍♂ man construction worker # 👷‍♂ man construction worker # 👷🏻‍♂ man construction worker: light skin tone # 👷🏻‍♂ man construction worker: light skin tone # 👷🏌‍♂ man construction worker: medium-light skin tone # 👷🏌‍♂ man construction worker: medium-light skin tone # 👷🏜‍♂ man construction worker: medium skin tone # 👷🏜‍♂ man construction worker: medium skin tone # 👷🏟‍♂ man construction worker: medium-dark skin tone # 👷🏟‍♂ man construction worker: medium-dark skin tone # 👷🏿‍♂ man construction worker: dark skin tone # 👷🏿‍♂ man construction worker: dark skin tone # 👷‍♀ woman construction worker # 👷‍♀ woman construction worker # 👷🏻‍♀ woman construction worker: light skin tone # 👷🏻‍♀ woman construction worker: light skin tone # 👷🏌‍♀ woman construction worker: medium-light skin tone # 👷🏌‍♀ woman construction worker: medium-light skin tone # 👷🏜‍♀ woman construction worker: medium skin tone # 👷🏜‍♀ woman construction worker: medium skin tone # 👷🏟‍♀ woman construction worker: medium-dark skin tone # 👷🏟‍♀ woman construction worker: medium-dark skin tone # 👷🏿‍♀ woman construction worker: dark skin tone # 👷🏿‍♀ woman construction worker: dark skin tone # 🀎 prince # 🀎🏻 prince: light skin tone # 🀎🏌 prince: medium-light skin tone # 🀎🏜 prince: medium skin tone # 🀎🏟 prince: medium-dark skin tone # 🀎🏿 prince: dark skin tone # 👞 princess # 👞🏻 princess: light skin tone # 👞🏌 princess: medium-light skin tone # 👞🏜 princess: medium skin tone # 👞🏟 princess: medium-dark skin tone # 👞🏿 princess: dark skin tone # 👳 person wearing turban # 👳🏻 person wearing turban: light skin tone # 👳🏌 person wearing turban: medium-light skin tone # 👳🏜 person wearing turban: medium skin tone # 👳🏟 person wearing turban: medium-dark skin tone # 👳🏿 person wearing turban: dark skin tone # 👳‍♂ man wearing turban # 👳‍♂ man wearing turban # 👳🏻‍♂ man wearing turban: light skin tone # 👳🏻‍♂ man wearing turban: light skin tone # 👳🏌‍♂ man wearing turban: medium-light skin tone # 👳🏌‍♂ man wearing turban: medium-light skin tone # 👳🏜‍♂ man wearing turban: medium skin tone # 👳🏜‍♂ man wearing turban: medium skin tone # 👳🏟‍♂ man wearing turban: medium-dark skin tone # 👳🏟‍♂ man wearing turban: medium-dark skin tone # 👳🏿‍♂ man wearing turban: dark skin tone # 👳🏿‍♂ man wearing turban: dark skin tone # 👳‍♀ woman wearing turban # 👳‍♀ woman wearing turban # 👳🏻‍♀ woman wearing turban: light skin tone # 👳🏻‍♀ woman wearing turban: light skin tone # 👳🏌‍♀ woman wearing turban: medium-light skin tone # 👳🏌‍♀ woman wearing turban: medium-light skin tone # 👳🏜‍♀ woman wearing turban: medium skin tone # 👳🏜‍♀ woman wearing turban: medium skin tone # 👳🏟‍♀ woman wearing turban: medium-dark skin tone # 👳🏟‍♀ woman wearing turban: medium-dark skin tone # 👳🏿‍♀ woman wearing turban: dark skin tone # 👳🏿‍♀ woman wearing turban: dark skin tone # 👲 man with Chinese cap # 👲🏻 man with Chinese cap: light skin tone # 👲🏌 man with Chinese cap: medium-light skin tone # 👲🏜 man with Chinese cap: medium skin tone # 👲🏟 man with Chinese cap: medium-dark skin tone # 👲🏿 man with Chinese cap: dark skin tone # 🧕 woman with headscarf # 🧕🏻 woman with headscarf: light skin tone # 🧕🏌 woman with headscarf: medium-light skin tone # 🧕🏜 woman with headscarf: medium skin tone # 🧕🏟 woman with headscarf: medium-dark skin tone # 🧕🏿 woman with headscarf: dark skin tone # 🀵 man in tuxedo # 🀵🏻 man in tuxedo: light skin tone # 🀵🏌 man in tuxedo: medium-light skin tone # 🀵🏜 man in tuxedo: medium skin tone # 🀵🏟 man in tuxedo: medium-dark skin tone # 🀵🏿 man in tuxedo: dark skin tone # 👰 bride with veil # 👰🏻 bride with veil: light skin tone # 👰🏌 bride with veil: medium-light skin tone # 👰🏜 bride with veil: medium skin tone # 👰🏟 bride with veil: medium-dark skin tone # 👰🏿 bride with veil: dark skin tone # 🀰 pregnant woman # 🀰🏻 pregnant woman: light skin tone # 🀰🏌 pregnant woman: medium-light skin tone # 🀰🏜 pregnant woman: medium skin tone # 🀰🏟 pregnant woman: medium-dark skin tone # 🀰🏿 pregnant woman: dark skin tone # 🀱 breast-feeding # 🀱🏻 breast-feeding: light skin tone # 🀱🏌 breast-feeding: medium-light skin tone # 🀱🏜 breast-feeding: medium skin tone # 🀱🏟 breast-feeding: medium-dark skin tone # 🀱🏿 breast-feeding: dark skin tone # subgroup: person-fantasy # 👌 baby angel # 👌🏻 baby angel: light skin tone # 👌🏌 baby angel: medium-light skin tone # 👌🏜 baby angel: medium skin tone # 👌🏟 baby angel: medium-dark skin tone # 👌🏿 baby angel: dark skin tone # 🎅 Santa Claus # 🎅🏻 Santa Claus: light skin tone # 🎅🏌 Santa Claus: medium-light skin tone # 🎅🏜 Santa Claus: medium skin tone # 🎅🏟 Santa Claus: medium-dark skin tone # 🎅🏿 Santa Claus: dark skin tone # 🀶 Mrs. Claus # 🀶🏻 Mrs. Claus: light skin tone # 🀶🏌 Mrs. Claus: medium-light skin tone # 🀶🏜 Mrs. Claus: medium skin tone # 🀶🏟 Mrs. Claus: medium-dark skin tone # 🀶🏿 Mrs. Claus: dark skin tone # 🊞 superhero # 🊞🏻 superhero: light skin tone # 🊞🏌 superhero: medium-light skin tone # 🊞🏜 superhero: medium skin tone # 🊞🏟 superhero: medium-dark skin tone # 🊞🏿 superhero: dark skin tone # 🊞‍♂ man superhero # 🊞‍♂ man superhero # 🊞🏻‍♂ man superhero: light skin tone # 🊞🏻‍♂ man superhero: light skin tone # 🊞🏌‍♂ man superhero: medium-light skin tone # 🊞🏌‍♂ man superhero: medium-light skin tone # 🊞🏜‍♂ man superhero: medium skin tone # 🊞🏜‍♂ man superhero: medium skin tone # 🊞🏟‍♂ man superhero: medium-dark skin tone # 🊞🏟‍♂ man superhero: medium-dark skin tone # 🊞🏿‍♂ man superhero: dark skin tone # 🊞🏿‍♂ man superhero: dark skin tone # 🊞‍♀ woman superhero # 🊞‍♀ woman superhero # 🊞🏻‍♀ woman superhero: light skin tone # 🊞🏻‍♀ woman superhero: light skin tone # 🊞🏌‍♀ woman superhero: medium-light skin tone # 🊞🏌‍♀ woman superhero: medium-light skin tone # 🊞🏜‍♀ woman superhero: medium skin tone # 🊞🏜‍♀ woman superhero: medium skin tone # 🊞🏟‍♀ woman superhero: medium-dark skin tone # 🊞🏟‍♀ woman superhero: medium-dark skin tone # 🊞🏿‍♀ woman superhero: dark skin tone # 🊞🏿‍♀ woman superhero: dark skin tone # 🊹 supervillain # 🊹🏻 supervillain: light skin tone # 🊹🏌 supervillain: medium-light skin tone # 🊹🏜 supervillain: medium skin tone # 🊹🏟 supervillain: medium-dark skin tone # 🊹🏿 supervillain: dark skin tone # 🊹‍♂ man supervillain # 🊹‍♂ man supervillain # 🊹🏻‍♂ man supervillain: light skin tone # 🊹🏻‍♂ man supervillain: light skin tone # 🊹🏌‍♂ man supervillain: medium-light skin tone # 🊹🏌‍♂ man supervillain: medium-light skin tone # 🊹🏜‍♂ man supervillain: medium skin tone # 🊹🏜‍♂ man supervillain: medium skin tone # 🊹🏟‍♂ man supervillain: medium-dark skin tone # 🊹🏟‍♂ man supervillain: medium-dark skin tone # 🊹🏿‍♂ man supervillain: dark skin tone # 🊹🏿‍♂ man supervillain: dark skin tone # 🊹‍♀ woman supervillain # 🊹‍♀ woman supervillain # 🊹🏻‍♀ woman supervillain: light skin tone # 🊹🏻‍♀ woman supervillain: light skin tone # 🊹🏌‍♀ woman supervillain: medium-light skin tone # 🊹🏌‍♀ woman supervillain: medium-light skin tone # 🊹🏜‍♀ woman supervillain: medium skin tone # 🊹🏜‍♀ woman supervillain: medium skin tone # 🊹🏟‍♀ woman supervillain: medium-dark skin tone # 🊹🏟‍♀ woman supervillain: medium-dark skin tone # 🊹🏿‍♀ woman supervillain: dark skin tone # 🊹🏿‍♀ woman supervillain: dark skin tone # 🧙 mage # 🧙🏻 mage: light skin tone # 🧙🏌 mage: medium-light skin tone # 🧙🏜 mage: medium skin tone # 🧙🏟 mage: medium-dark skin tone # 🧙🏿 mage: dark skin tone # 🧙‍♂ man mage # 🧙‍♂ man mage # 🧙🏻‍♂ man mage: light skin tone # 🧙🏻‍♂ man mage: light skin tone # 🧙🏌‍♂ man mage: medium-light skin tone # 🧙🏌‍♂ man mage: medium-light skin tone # 🧙🏜‍♂ man mage: medium skin tone # 🧙🏜‍♂ man mage: medium skin tone # 🧙🏟‍♂ man mage: medium-dark skin tone # 🧙🏟‍♂ man mage: medium-dark skin tone # 🧙🏿‍♂ man mage: dark skin tone # 🧙🏿‍♂ man mage: dark skin tone # 🧙‍♀ woman mage # 🧙‍♀ woman mage # 🧙🏻‍♀ woman mage: light skin tone # 🧙🏻‍♀ woman mage: light skin tone # 🧙🏌‍♀ woman mage: medium-light skin tone # 🧙🏌‍♀ woman mage: medium-light skin tone # 🧙🏜‍♀ woman mage: medium skin tone # 🧙🏜‍♀ woman mage: medium skin tone # 🧙🏟‍♀ woman mage: medium-dark skin tone # 🧙🏟‍♀ woman mage: medium-dark skin tone # 🧙🏿‍♀ woman mage: dark skin tone # 🧙🏿‍♀ woman mage: dark skin tone # 🧚 fairy # 🧚🏻 fairy: light skin tone # 🧚🏌 fairy: medium-light skin tone # 🧚🏜 fairy: medium skin tone # 🧚🏟 fairy: medium-dark skin tone # 🧚🏿 fairy: dark skin tone # 🧚‍♂ man fairy # 🧚‍♂ man fairy # 🧚🏻‍♂ man fairy: light skin tone # 🧚🏻‍♂ man fairy: light skin tone # 🧚🏌‍♂ man fairy: medium-light skin tone # 🧚🏌‍♂ man fairy: medium-light skin tone # 🧚🏜‍♂ man fairy: medium skin tone # 🧚🏜‍♂ man fairy: medium skin tone # 🧚🏟‍♂ man fairy: medium-dark skin tone # 🧚🏟‍♂ man fairy: medium-dark skin tone # 🧚🏿‍♂ man fairy: dark skin tone # 🧚🏿‍♂ man fairy: dark skin tone # 🧚‍♀ woman fairy # 🧚‍♀ woman fairy # 🧚🏻‍♀ woman fairy: light skin tone # 🧚🏻‍♀ woman fairy: light skin tone # 🧚🏌‍♀ woman fairy: medium-light skin tone # 🧚🏌‍♀ woman fairy: medium-light skin tone # 🧚🏜‍♀ woman fairy: medium skin tone # 🧚🏜‍♀ woman fairy: medium skin tone # 🧚🏟‍♀ woman fairy: medium-dark skin tone # 🧚🏟‍♀ woman fairy: medium-dark skin tone # 🧚🏿‍♀ woman fairy: dark skin tone # 🧚🏿‍♀ woman fairy: dark skin tone # 🧛 vampire # 🧛🏻 vampire: light skin tone # 🧛🏌 vampire: medium-light skin tone # 🧛🏜 vampire: medium skin tone # 🧛🏟 vampire: medium-dark skin tone # 🧛🏿 vampire: dark skin tone # 🧛‍♂ man vampire # 🧛‍♂ man vampire # 🧛🏻‍♂ man vampire: light skin tone # 🧛🏻‍♂ man vampire: light skin tone # 🧛🏌‍♂ man vampire: medium-light skin tone # 🧛🏌‍♂ man vampire: medium-light skin tone # 🧛🏜‍♂ man vampire: medium skin tone # 🧛🏜‍♂ man vampire: medium skin tone # 🧛🏟‍♂ man vampire: medium-dark skin tone # 🧛🏟‍♂ man vampire: medium-dark skin tone # 🧛🏿‍♂ man vampire: dark skin tone # 🧛🏿‍♂ man vampire: dark skin tone # 🧛‍♀ woman vampire # 🧛‍♀ woman vampire # 🧛🏻‍♀ woman vampire: light skin tone # 🧛🏻‍♀ woman vampire: light skin tone # 🧛🏌‍♀ woman vampire: medium-light skin tone # 🧛🏌‍♀ woman vampire: medium-light skin tone # 🧛🏜‍♀ woman vampire: medium skin tone # 🧛🏜‍♀ woman vampire: medium skin tone # 🧛🏟‍♀ woman vampire: medium-dark skin tone # 🧛🏟‍♀ woman vampire: medium-dark skin tone # 🧛🏿‍♀ woman vampire: dark skin tone # 🧛🏿‍♀ woman vampire: dark skin tone # 🧜 merperson # 🧜🏻 merperson: light skin tone # 🧜🏌 merperson: medium-light skin tone # 🧜🏜 merperson: medium skin tone # 🧜🏟 merperson: medium-dark skin tone # 🧜🏿 merperson: dark skin tone # 🧜‍♂ merman # 🧜‍♂ merman # 🧜🏻‍♂ merman: light skin tone # 🧜🏻‍♂ merman: light skin tone # 🧜🏌‍♂ merman: medium-light skin tone # 🧜🏌‍♂ merman: medium-light skin tone # 🧜🏜‍♂ merman: medium skin tone # 🧜🏜‍♂ merman: medium skin tone # 🧜🏟‍♂ merman: medium-dark skin tone # 🧜🏟‍♂ merman: medium-dark skin tone # 🧜🏿‍♂ merman: dark skin tone # 🧜🏿‍♂ merman: dark skin tone # 🧜‍♀ mermaid # 🧜‍♀ mermaid # 🧜🏻‍♀ mermaid: light skin tone # 🧜🏻‍♀ mermaid: light skin tone # 🧜🏌‍♀ mermaid: medium-light skin tone # 🧜🏌‍♀ mermaid: medium-light skin tone # 🧜🏜‍♀ mermaid: medium skin tone # 🧜🏜‍♀ mermaid: medium skin tone # 🧜🏟‍♀ mermaid: medium-dark skin tone # 🧜🏟‍♀ mermaid: medium-dark skin tone # 🧜🏿‍♀ mermaid: dark skin tone # 🧜🏿‍♀ mermaid: dark skin tone # 🧝 elf # 🧝🏻 elf: light skin tone # 🧝🏌 elf: medium-light skin tone # 🧝🏜 elf: medium skin tone # 🧝🏟 elf: medium-dark skin tone # 🧝🏿 elf: dark skin tone # 🧝‍♂ man elf # 🧝‍♂ man elf # 🧝🏻‍♂ man elf: light skin tone # 🧝🏻‍♂ man elf: light skin tone # 🧝🏌‍♂ man elf: medium-light skin tone # 🧝🏌‍♂ man elf: medium-light skin tone # 🧝🏜‍♂ man elf: medium skin tone # 🧝🏜‍♂ man elf: medium skin tone # 🧝🏟‍♂ man elf: medium-dark skin tone # 🧝🏟‍♂ man elf: medium-dark skin tone # 🧝🏿‍♂ man elf: dark skin tone # 🧝🏿‍♂ man elf: dark skin tone # 🧝‍♀ woman elf # 🧝‍♀ woman elf # 🧝🏻‍♀ woman elf: light skin tone # 🧝🏻‍♀ woman elf: light skin tone # 🧝🏌‍♀ woman elf: medium-light skin tone # 🧝🏌‍♀ woman elf: medium-light skin tone # 🧝🏜‍♀ woman elf: medium skin tone # 🧝🏜‍♀ woman elf: medium skin tone # 🧝🏟‍♀ woman elf: medium-dark skin tone # 🧝🏟‍♀ woman elf: medium-dark skin tone # 🧝🏿‍♀ woman elf: dark skin tone # 🧝🏿‍♀ woman elf: dark skin tone # 🧞 genie # 🧞‍♂ man genie # 🧞‍♂ man genie # 🧞‍♀ woman genie # 🧞‍♀ woman genie # 🧟 zombie # 🧟‍♂ man zombie # 🧟‍♂ man zombie # 🧟‍♀ woman zombie # 🧟‍♀ woman zombie # subgroup: person-activity # 💆 person getting massage # 💆🏻 person getting massage: light skin tone # 💆🏌 person getting massage: medium-light skin tone # 💆🏜 person getting massage: medium skin tone # 💆🏟 person getting massage: medium-dark skin tone # 💆🏿 person getting massage: dark skin tone # 💆‍♂ man getting massage # 💆‍♂ man getting massage # 💆🏻‍♂ man getting massage: light skin tone # 💆🏻‍♂ man getting massage: light skin tone # 💆🏌‍♂ man getting massage: medium-light skin tone # 💆🏌‍♂ man getting massage: medium-light skin tone # 💆🏜‍♂ man getting massage: medium skin tone # 💆🏜‍♂ man getting massage: medium skin tone # 💆🏟‍♂ man getting massage: medium-dark skin tone # 💆🏟‍♂ man getting massage: medium-dark skin tone # 💆🏿‍♂ man getting massage: dark skin tone # 💆🏿‍♂ man getting massage: dark skin tone # 💆‍♀ woman getting massage # 💆‍♀ woman getting massage # 💆🏻‍♀ woman getting massage: light skin tone # 💆🏻‍♀ woman getting massage: light skin tone # 💆🏌‍♀ woman getting massage: medium-light skin tone # 💆🏌‍♀ woman getting massage: medium-light skin tone # 💆🏜‍♀ woman getting massage: medium skin tone # 💆🏜‍♀ woman getting massage: medium skin tone # 💆🏟‍♀ woman getting massage: medium-dark skin tone # 💆🏟‍♀ woman getting massage: medium-dark skin tone # 💆🏿‍♀ woman getting massage: dark skin tone # 💆🏿‍♀ woman getting massage: dark skin tone # 💇 person getting haircut # 💇🏻 person getting haircut: light skin tone # 💇🏌 person getting haircut: medium-light skin tone # 💇🏜 person getting haircut: medium skin tone # 💇🏟 person getting haircut: medium-dark skin tone # 💇🏿 person getting haircut: dark skin tone # 💇‍♂ man getting haircut # 💇‍♂ man getting haircut # 💇🏻‍♂ man getting haircut: light skin tone # 💇🏻‍♂ man getting haircut: light skin tone # 💇🏌‍♂ man getting haircut: medium-light skin tone # 💇🏌‍♂ man getting haircut: medium-light skin tone # 💇🏜‍♂ man getting haircut: medium skin tone # 💇🏜‍♂ man getting haircut: medium skin tone # 💇🏟‍♂ man getting haircut: medium-dark skin tone # 💇🏟‍♂ man getting haircut: medium-dark skin tone # 💇🏿‍♂ man getting haircut: dark skin tone # 💇🏿‍♂ man getting haircut: dark skin tone # 💇‍♀ woman getting haircut # 💇‍♀ woman getting haircut # 💇🏻‍♀ woman getting haircut: light skin tone # 💇🏻‍♀ woman getting haircut: light skin tone # 💇🏌‍♀ woman getting haircut: medium-light skin tone # 💇🏌‍♀ woman getting haircut: medium-light skin tone # 💇🏜‍♀ woman getting haircut: medium skin tone # 💇🏜‍♀ woman getting haircut: medium skin tone # 💇🏟‍♀ woman getting haircut: medium-dark skin tone # 💇🏟‍♀ woman getting haircut: medium-dark skin tone # 💇🏿‍♀ woman getting haircut: dark skin tone # 💇🏿‍♀ woman getting haircut: dark skin tone # 🚶 person walking # 🚶🏻 person walking: light skin tone # 🚶🏌 person walking: medium-light skin tone # 🚶🏜 person walking: medium skin tone # 🚶🏟 person walking: medium-dark skin tone # 🚶🏿 person walking: dark skin tone # 🚶‍♂ man walking # 🚶‍♂ man walking # 🚶🏻‍♂ man walking: light skin tone # 🚶🏻‍♂ man walking: light skin tone # 🚶🏌‍♂ man walking: medium-light skin tone # 🚶🏌‍♂ man walking: medium-light skin tone # 🚶🏜‍♂ man walking: medium skin tone # 🚶🏜‍♂ man walking: medium skin tone # 🚶🏟‍♂ man walking: medium-dark skin tone # 🚶🏟‍♂ man walking: medium-dark skin tone # 🚶🏿‍♂ man walking: dark skin tone # 🚶🏿‍♂ man walking: dark skin tone # 🚶‍♀ woman walking # 🚶‍♀ woman walking # 🚶🏻‍♀ woman walking: light skin tone # 🚶🏻‍♀ woman walking: light skin tone # 🚶🏌‍♀ woman walking: medium-light skin tone # 🚶🏌‍♀ woman walking: medium-light skin tone # 🚶🏜‍♀ woman walking: medium skin tone # 🚶🏜‍♀ woman walking: medium skin tone # 🚶🏟‍♀ woman walking: medium-dark skin tone # 🚶🏟‍♀ woman walking: medium-dark skin tone # 🚶🏿‍♀ woman walking: dark skin tone # 🚶🏿‍♀ woman walking: dark skin tone # 🧍 person standing # 🧍🏻 person standing: light skin tone # 🧍🏌 person standing: medium-light skin tone # 🧍🏜 person standing: medium skin tone # 🧍🏟 person standing: medium-dark skin tone # 🧍🏿 person standing: dark skin tone # 🧍‍♂ man standing # 🧍‍♂ man standing # 🧍🏻‍♂ man standing: light skin tone # 🧍🏻‍♂ man standing: light skin tone # 🧍🏌‍♂ man standing: medium-light skin tone # 🧍🏌‍♂ man standing: medium-light skin tone # 🧍🏜‍♂ man standing: medium skin tone # 🧍🏜‍♂ man standing: medium skin tone # 🧍🏟‍♂ man standing: medium-dark skin tone # 🧍🏟‍♂ man standing: medium-dark skin tone # 🧍🏿‍♂ man standing: dark skin tone # 🧍🏿‍♂ man standing: dark skin tone # 🧍‍♀ woman standing # 🧍‍♀ woman standing # 🧍🏻‍♀ woman standing: light skin tone # 🧍🏻‍♀ woman standing: light skin tone # 🧍🏌‍♀ woman standing: medium-light skin tone # 🧍🏌‍♀ woman standing: medium-light skin tone # 🧍🏜‍♀ woman standing: medium skin tone # 🧍🏜‍♀ woman standing: medium skin tone # 🧍🏟‍♀ woman standing: medium-dark skin tone # 🧍🏟‍♀ woman standing: medium-dark skin tone # 🧍🏿‍♀ woman standing: dark skin tone # 🧍🏿‍♀ woman standing: dark skin tone # 🧎 person kneeling # 🧎🏻 person kneeling: light skin tone # 🧎🏌 person kneeling: medium-light skin tone # 🧎🏜 person kneeling: medium skin tone # 🧎🏟 person kneeling: medium-dark skin tone # 🧎🏿 person kneeling: dark skin tone # 🧎‍♂ man kneeling # 🧎‍♂ man kneeling # 🧎🏻‍♂ man kneeling: light skin tone # 🧎🏻‍♂ man kneeling: light skin tone # 🧎🏌‍♂ man kneeling: medium-light skin tone # 🧎🏌‍♂ man kneeling: medium-light skin tone # 🧎🏜‍♂ man kneeling: medium skin tone # 🧎🏜‍♂ man kneeling: medium skin tone # 🧎🏟‍♂ man kneeling: medium-dark skin tone # 🧎🏟‍♂ man kneeling: medium-dark skin tone # 🧎🏿‍♂ man kneeling: dark skin tone # 🧎🏿‍♂ man kneeling: dark skin tone # 🧎‍♀ woman kneeling # 🧎‍♀ woman kneeling # 🧎🏻‍♀ woman kneeling: light skin tone # 🧎🏻‍♀ woman kneeling: light skin tone # 🧎🏌‍♀ woman kneeling: medium-light skin tone # 🧎🏌‍♀ woman kneeling: medium-light skin tone # 🧎🏜‍♀ woman kneeling: medium skin tone # 🧎🏜‍♀ woman kneeling: medium skin tone # 🧎🏟‍♀ woman kneeling: medium-dark skin tone # 🧎🏟‍♀ woman kneeling: medium-dark skin tone # 🧎🏿‍♀ woman kneeling: dark skin tone # 🧎🏿‍♀ woman kneeling: dark skin tone # 👚‍🊯 man with probing cane # 👚🏻‍🊯 man with probing cane: light skin tone # 👚🏌‍🊯 man with probing cane: medium-light skin tone # 👚🏜‍🊯 man with probing cane: medium skin tone # 👚🏟‍🊯 man with probing cane: medium-dark skin tone # 👚🏿‍🊯 man with probing cane: dark skin tone # 👩‍🊯 woman with probing cane # 👩🏻‍🊯 woman with probing cane: light skin tone # 👩🏌‍🊯 woman with probing cane: medium-light skin tone # 👩🏜‍🊯 woman with probing cane: medium skin tone # 👩🏟‍🊯 woman with probing cane: medium-dark skin tone # 👩🏿‍🊯 woman with probing cane: dark skin tone # 👚‍🊌 man in motorized wheelchair # 👚🏻‍🊌 man in motorized wheelchair: light skin tone # 👚🏌‍🊌 man in motorized wheelchair: medium-light skin tone # 👚🏜‍🊌 man in motorized wheelchair: medium skin tone # 👚🏟‍🊌 man in motorized wheelchair: medium-dark skin tone # 👚🏿‍🊌 man in motorized wheelchair: dark skin tone # 👩‍🊌 woman in motorized wheelchair # 👩🏻‍🊌 woman in motorized wheelchair: light skin tone # 👩🏌‍🊌 woman in motorized wheelchair: medium-light skin tone # 👩🏜‍🊌 woman in motorized wheelchair: medium skin tone # 👩🏟‍🊌 woman in motorized wheelchair: medium-dark skin tone # 👩🏿‍🊌 woman in motorized wheelchair: dark skin tone # 👚‍🊜 man in manual wheelchair # 👚🏻‍🊜 man in manual wheelchair: light skin tone # 👚🏌‍🊜 man in manual wheelchair: medium-light skin tone # 👚🏜‍🊜 man in manual wheelchair: medium skin tone # 👚🏟‍🊜 man in manual wheelchair: medium-dark skin tone # 👚🏿‍🊜 man in manual wheelchair: dark skin tone # 👩‍🊜 woman in manual wheelchair # 👩🏻‍🊜 woman in manual wheelchair: light skin tone # 👩🏌‍🊜 woman in manual wheelchair: medium-light skin tone # 👩🏜‍🊜 woman in manual wheelchair: medium skin tone # 👩🏟‍🊜 woman in manual wheelchair: medium-dark skin tone # 👩🏿‍🊜 woman in manual wheelchair: dark skin tone # 🏃 person running # 🏃🏻 person running: light skin tone # 🏃🏌 person running: medium-light skin tone # 🏃🏜 person running: medium skin tone # 🏃🏟 person running: medium-dark skin tone # 🏃🏿 person running: dark skin tone # 🏃‍♂ man running # 🏃‍♂ man running # 🏃🏻‍♂ man running: light skin tone # 🏃🏻‍♂ man running: light skin tone # 🏃🏌‍♂ man running: medium-light skin tone # 🏃🏌‍♂ man running: medium-light skin tone # 🏃🏜‍♂ man running: medium skin tone # 🏃🏜‍♂ man running: medium skin tone # 🏃🏟‍♂ man running: medium-dark skin tone # 🏃🏟‍♂ man running: medium-dark skin tone # 🏃🏿‍♂ man running: dark skin tone # 🏃🏿‍♂ man running: dark skin tone # 🏃‍♀ woman running # 🏃‍♀ woman running # 🏃🏻‍♀ woman running: light skin tone # 🏃🏻‍♀ woman running: light skin tone # 🏃🏌‍♀ woman running: medium-light skin tone # 🏃🏌‍♀ woman running: medium-light skin tone # 🏃🏜‍♀ woman running: medium skin tone # 🏃🏜‍♀ woman running: medium skin tone # 🏃🏟‍♀ woman running: medium-dark skin tone # 🏃🏟‍♀ woman running: medium-dark skin tone # 🏃🏿‍♀ woman running: dark skin tone # 🏃🏿‍♀ woman running: dark skin tone # 💃 woman dancing # 💃🏻 woman dancing: light skin tone # 💃🏌 woman dancing: medium-light skin tone # 💃🏜 woman dancing: medium skin tone # 💃🏟 woman dancing: medium-dark skin tone # 💃🏿 woman dancing: dark skin tone # 🕺 man dancing # 🕺🏻 man dancing: light skin tone # 🕺🏌 man dancing: medium-light skin tone # 🕺🏜 man dancing: medium skin tone # 🕺🏟 man dancing: medium-dark skin tone # 🕺🏿 man dancing: dark skin tone # 🕎 man in suit levitating # 🕎 man in suit levitating # 🕎🏻 man in suit levitating: light skin tone # 🕎🏌 man in suit levitating: medium-light skin tone # 🕎🏜 man in suit levitating: medium skin tone # 🕎🏟 man in suit levitating: medium-dark skin tone # 🕎🏿 man in suit levitating: dark skin tone # 👯 people with bunny ears # 👯‍♂ men with bunny ears # 👯‍♂ men with bunny ears # 👯‍♀ women with bunny ears # 👯‍♀ women with bunny ears # 🧖 person in steamy room # 🧖🏻 person in steamy room: light skin tone # 🧖🏌 person in steamy room: medium-light skin tone # 🧖🏜 person in steamy room: medium skin tone # 🧖🏟 person in steamy room: medium-dark skin tone # 🧖🏿 person in steamy room: dark skin tone # 🧖‍♂ man in steamy room # 🧖‍♂ man in steamy room # 🧖🏻‍♂ man in steamy room: light skin tone # 🧖🏻‍♂ man in steamy room: light skin tone # 🧖🏌‍♂ man in steamy room: medium-light skin tone # 🧖🏌‍♂ man in steamy room: medium-light skin tone # 🧖🏜‍♂ man in steamy room: medium skin tone # 🧖🏜‍♂ man in steamy room: medium skin tone # 🧖🏟‍♂ man in steamy room: medium-dark skin tone # 🧖🏟‍♂ man in steamy room: medium-dark skin tone # 🧖🏿‍♂ man in steamy room: dark skin tone # 🧖🏿‍♂ man in steamy room: dark skin tone # 🧖‍♀ woman in steamy room # 🧖‍♀ woman in steamy room # 🧖🏻‍♀ woman in steamy room: light skin tone # 🧖🏻‍♀ woman in steamy room: light skin tone # 🧖🏌‍♀ woman in steamy room: medium-light skin tone # 🧖🏌‍♀ woman in steamy room: medium-light skin tone # 🧖🏜‍♀ woman in steamy room: medium skin tone # 🧖🏜‍♀ woman in steamy room: medium skin tone # 🧖🏟‍♀ woman in steamy room: medium-dark skin tone # 🧖🏟‍♀ woman in steamy room: medium-dark skin tone # 🧖🏿‍♀ woman in steamy room: dark skin tone # 🧖🏿‍♀ woman in steamy room: dark skin tone # 🧗 person climbing # 🧗🏻 person climbing: light skin tone # 🧗🏌 person climbing: medium-light skin tone # 🧗🏜 person climbing: medium skin tone # 🧗🏟 person climbing: medium-dark skin tone # 🧗🏿 person climbing: dark skin tone # 🧗‍♂ man climbing # 🧗‍♂ man climbing # 🧗🏻‍♂ man climbing: light skin tone # 🧗🏻‍♂ man climbing: light skin tone # 🧗🏌‍♂ man climbing: medium-light skin tone # 🧗🏌‍♂ man climbing: medium-light skin tone # 🧗🏜‍♂ man climbing: medium skin tone # 🧗🏜‍♂ man climbing: medium skin tone # 🧗🏟‍♂ man climbing: medium-dark skin tone # 🧗🏟‍♂ man climbing: medium-dark skin tone # 🧗🏿‍♂ man climbing: dark skin tone # 🧗🏿‍♂ man climbing: dark skin tone # 🧗‍♀ woman climbing # 🧗‍♀ woman climbing # 🧗🏻‍♀ woman climbing: light skin tone # 🧗🏻‍♀ woman climbing: light skin tone # 🧗🏌‍♀ woman climbing: medium-light skin tone # 🧗🏌‍♀ woman climbing: medium-light skin tone # 🧗🏜‍♀ woman climbing: medium skin tone # 🧗🏜‍♀ woman climbing: medium skin tone # 🧗🏟‍♀ woman climbing: medium-dark skin tone # 🧗🏟‍♀ woman climbing: medium-dark skin tone # 🧗🏿‍♀ woman climbing: dark skin tone # 🧗🏿‍♀ woman climbing: dark skin tone # subgroup: person-sport # 🀺 person fencing # 🏇 horse racing # 🏇🏻 horse racing: light skin tone # 🏇🏌 horse racing: medium-light skin tone # 🏇🏜 horse racing: medium skin tone # 🏇🏟 horse racing: medium-dark skin tone # 🏇🏿 horse racing: dark skin tone # ⛷ skier # ⛷ skier # 🏂 snowboarder # 🏂🏻 snowboarder: light skin tone # 🏂🏌 snowboarder: medium-light skin tone # 🏂🏜 snowboarder: medium skin tone # 🏂🏟 snowboarder: medium-dark skin tone # 🏂🏿 snowboarder: dark skin tone # 🏌 person golfing # 🏌 person golfing # 🏌🏻 person golfing: light skin tone # 🏌🏌 person golfing: medium-light skin tone # 🏌🏜 person golfing: medium skin tone # 🏌🏟 person golfing: medium-dark skin tone # 🏌🏿 person golfing: dark skin tone # 🏌‍♂ man golfing # 🏌‍♂ man golfing # 🏌‍♂ man golfing # 🏌‍♂ man golfing # 🏌🏻‍♂ man golfing: light skin tone # 🏌🏻‍♂ man golfing: light skin tone # 🏌🏌‍♂ man golfing: medium-light skin tone # 🏌🏌‍♂ man golfing: medium-light skin tone # 🏌🏜‍♂ man golfing: medium skin tone # 🏌🏜‍♂ man golfing: medium skin tone # 🏌🏟‍♂ man golfing: medium-dark skin tone # 🏌🏟‍♂ man golfing: medium-dark skin tone # 🏌🏿‍♂ man golfing: dark skin tone # 🏌🏿‍♂ man golfing: dark skin tone # 🏌‍♀ woman golfing # 🏌‍♀ woman golfing # 🏌‍♀ woman golfing # 🏌‍♀ woman golfing # 🏌🏻‍♀ woman golfing: light skin tone # 🏌🏻‍♀ woman golfing: light skin tone # 🏌🏌‍♀ woman golfing: medium-light skin tone # 🏌🏌‍♀ woman golfing: medium-light skin tone # 🏌🏜‍♀ woman golfing: medium skin tone # 🏌🏜‍♀ woman golfing: medium skin tone # 🏌🏟‍♀ woman golfing: medium-dark skin tone # 🏌🏟‍♀ woman golfing: medium-dark skin tone # 🏌🏿‍♀ woman golfing: dark skin tone # 🏌🏿‍♀ woman golfing: dark skin tone # 🏄 person surfing # 🏄🏻 person surfing: light skin tone # 🏄🏌 person surfing: medium-light skin tone # 🏄🏜 person surfing: medium skin tone # 🏄🏟 person surfing: medium-dark skin tone # 🏄🏿 person surfing: dark skin tone # 🏄‍♂ man surfing # 🏄‍♂ man surfing # 🏄🏻‍♂ man surfing: light skin tone # 🏄🏻‍♂ man surfing: light skin tone # 🏄🏌‍♂ man surfing: medium-light skin tone # 🏄🏌‍♂ man surfing: medium-light skin tone # 🏄🏜‍♂ man surfing: medium skin tone # 🏄🏜‍♂ man surfing: medium skin tone # 🏄🏟‍♂ man surfing: medium-dark skin tone # 🏄🏟‍♂ man surfing: medium-dark skin tone # 🏄🏿‍♂ man surfing: dark skin tone # 🏄🏿‍♂ man surfing: dark skin tone # 🏄‍♀ woman surfing # 🏄‍♀ woman surfing # 🏄🏻‍♀ woman surfing: light skin tone # 🏄🏻‍♀ woman surfing: light skin tone # 🏄🏌‍♀ woman surfing: medium-light skin tone # 🏄🏌‍♀ woman surfing: medium-light skin tone # 🏄🏜‍♀ woman surfing: medium skin tone # 🏄🏜‍♀ woman surfing: medium skin tone # 🏄🏟‍♀ woman surfing: medium-dark skin tone # 🏄🏟‍♀ woman surfing: medium-dark skin tone # 🏄🏿‍♀ woman surfing: dark skin tone # 🏄🏿‍♀ woman surfing: dark skin tone # 🚣 person rowing boat # 🚣🏻 person rowing boat: light skin tone # 🚣🏌 person rowing boat: medium-light skin tone # 🚣🏜 person rowing boat: medium skin tone # 🚣🏟 person rowing boat: medium-dark skin tone # 🚣🏿 person rowing boat: dark skin tone # 🚣‍♂ man rowing boat # 🚣‍♂ man rowing boat # 🚣🏻‍♂ man rowing boat: light skin tone # 🚣🏻‍♂ man rowing boat: light skin tone # 🚣🏌‍♂ man rowing boat: medium-light skin tone # 🚣🏌‍♂ man rowing boat: medium-light skin tone # 🚣🏜‍♂ man rowing boat: medium skin tone # 🚣🏜‍♂ man rowing boat: medium skin tone # 🚣🏟‍♂ man rowing boat: medium-dark skin tone # 🚣🏟‍♂ man rowing boat: medium-dark skin tone # 🚣🏿‍♂ man rowing boat: dark skin tone # 🚣🏿‍♂ man rowing boat: dark skin tone # 🚣‍♀ woman rowing boat # 🚣‍♀ woman rowing boat # 🚣🏻‍♀ woman rowing boat: light skin tone # 🚣🏻‍♀ woman rowing boat: light skin tone # 🚣🏌‍♀ woman rowing boat: medium-light skin tone # 🚣🏌‍♀ woman rowing boat: medium-light skin tone # 🚣🏜‍♀ woman rowing boat: medium skin tone # 🚣🏜‍♀ woman rowing boat: medium skin tone # 🚣🏟‍♀ woman rowing boat: medium-dark skin tone # 🚣🏟‍♀ woman rowing boat: medium-dark skin tone # 🚣🏿‍♀ woman rowing boat: dark skin tone # 🚣🏿‍♀ woman rowing boat: dark skin tone # 🏊 person swimming # 🏊🏻 person swimming: light skin tone # 🏊🏌 person swimming: medium-light skin tone # 🏊🏜 person swimming: medium skin tone # 🏊🏟 person swimming: medium-dark skin tone # 🏊🏿 person swimming: dark skin tone # 🏊‍♂ man swimming # 🏊‍♂ man swimming # 🏊🏻‍♂ man swimming: light skin tone # 🏊🏻‍♂ man swimming: light skin tone # 🏊🏌‍♂ man swimming: medium-light skin tone # 🏊🏌‍♂ man swimming: medium-light skin tone # 🏊🏜‍♂ man swimming: medium skin tone # 🏊🏜‍♂ man swimming: medium skin tone # 🏊🏟‍♂ man swimming: medium-dark skin tone # 🏊🏟‍♂ man swimming: medium-dark skin tone # 🏊🏿‍♂ man swimming: dark skin tone # 🏊🏿‍♂ man swimming: dark skin tone # 🏊‍♀ woman swimming # 🏊‍♀ woman swimming # 🏊🏻‍♀ woman swimming: light skin tone # 🏊🏻‍♀ woman swimming: light skin tone # 🏊🏌‍♀ woman swimming: medium-light skin tone # 🏊🏌‍♀ woman swimming: medium-light skin tone # 🏊🏜‍♀ woman swimming: medium skin tone # 🏊🏜‍♀ woman swimming: medium skin tone # 🏊🏟‍♀ woman swimming: medium-dark skin tone # 🏊🏟‍♀ woman swimming: medium-dark skin tone # 🏊🏿‍♀ woman swimming: dark skin tone # 🏊🏿‍♀ woman swimming: dark skin tone # ⛹ person bouncing ball # ⛹ person bouncing ball # ⛹🏻 person bouncing ball: light skin tone # ⛹🏌 person bouncing ball: medium-light skin tone # ⛹🏜 person bouncing ball: medium skin tone # ⛹🏟 person bouncing ball: medium-dark skin tone # ⛹🏿 person bouncing ball: dark skin tone # ⛹‍♂ man bouncing ball # ⛹‍♂ man bouncing ball # ⛹‍♂ man bouncing ball # ⛹‍♂ man bouncing ball # ⛹🏻‍♂ man bouncing ball: light skin tone # ⛹🏻‍♂ man bouncing ball: light skin tone # ⛹🏌‍♂ man bouncing ball: medium-light skin tone # ⛹🏌‍♂ man bouncing ball: medium-light skin tone # ⛹🏜‍♂ man bouncing ball: medium skin tone # ⛹🏜‍♂ man bouncing ball: medium skin tone # ⛹🏟‍♂ man bouncing ball: medium-dark skin tone # ⛹🏟‍♂ man bouncing ball: medium-dark skin tone # ⛹🏿‍♂ man bouncing ball: dark skin tone # ⛹🏿‍♂ man bouncing ball: dark skin tone # ⛹‍♀ woman bouncing ball # ⛹‍♀ woman bouncing ball # ⛹‍♀ woman bouncing ball # ⛹‍♀ woman bouncing ball # ⛹🏻‍♀ woman bouncing ball: light skin tone # ⛹🏻‍♀ woman bouncing ball: light skin tone # ⛹🏌‍♀ woman bouncing ball: medium-light skin tone # ⛹🏌‍♀ woman bouncing ball: medium-light skin tone # ⛹🏜‍♀ woman bouncing ball: medium skin tone # ⛹🏜‍♀ woman bouncing ball: medium skin tone # ⛹🏟‍♀ woman bouncing ball: medium-dark skin tone # ⛹🏟‍♀ woman bouncing ball: medium-dark skin tone # ⛹🏿‍♀ woman bouncing ball: dark skin tone # ⛹🏿‍♀ woman bouncing ball: dark skin tone # 🏋 person lifting weights # 🏋 person lifting weights # 🏋🏻 person lifting weights: light skin tone # 🏋🏌 person lifting weights: medium-light skin tone # 🏋🏜 person lifting weights: medium skin tone # 🏋🏟 person lifting weights: medium-dark skin tone # 🏋🏿 person lifting weights: dark skin tone # 🏋‍♂ man lifting weights # 🏋‍♂ man lifting weights # 🏋‍♂ man lifting weights # 🏋‍♂ man lifting weights # 🏋🏻‍♂ man lifting weights: light skin tone # 🏋🏻‍♂ man lifting weights: light skin tone # 🏋🏌‍♂ man lifting weights: medium-light skin tone # 🏋🏌‍♂ man lifting weights: medium-light skin tone # 🏋🏜‍♂ man lifting weights: medium skin tone # 🏋🏜‍♂ man lifting weights: medium skin tone # 🏋🏟‍♂ man lifting weights: medium-dark skin tone # 🏋🏟‍♂ man lifting weights: medium-dark skin tone # 🏋🏿‍♂ man lifting weights: dark skin tone # 🏋🏿‍♂ man lifting weights: dark skin tone # 🏋‍♀ woman lifting weights # 🏋‍♀ woman lifting weights # 🏋‍♀ woman lifting weights # 🏋‍♀ woman lifting weights # 🏋🏻‍♀ woman lifting weights: light skin tone # 🏋🏻‍♀ woman lifting weights: light skin tone # 🏋🏌‍♀ woman lifting weights: medium-light skin tone # 🏋🏌‍♀ woman lifting weights: medium-light skin tone # 🏋🏜‍♀ woman lifting weights: medium skin tone # 🏋🏜‍♀ woman lifting weights: medium skin tone # 🏋🏟‍♀ woman lifting weights: medium-dark skin tone # 🏋🏟‍♀ woman lifting weights: medium-dark skin tone # 🏋🏿‍♀ woman lifting weights: dark skin tone # 🏋🏿‍♀ woman lifting weights: dark skin tone # 🚎 person biking # 🚎🏻 person biking: light skin tone # 🚎🏌 person biking: medium-light skin tone # 🚎🏜 person biking: medium skin tone # 🚎🏟 person biking: medium-dark skin tone # 🚎🏿 person biking: dark skin tone # 🚎‍♂ man biking # 🚎‍♂ man biking # 🚎🏻‍♂ man biking: light skin tone # 🚎🏻‍♂ man biking: light skin tone # 🚎🏌‍♂ man biking: medium-light skin tone # 🚎🏌‍♂ man biking: medium-light skin tone # 🚎🏜‍♂ man biking: medium skin tone # 🚎🏜‍♂ man biking: medium skin tone # 🚎🏟‍♂ man biking: medium-dark skin tone # 🚎🏟‍♂ man biking: medium-dark skin tone # 🚎🏿‍♂ man biking: dark skin tone # 🚎🏿‍♂ man biking: dark skin tone # 🚎‍♀ woman biking # 🚎‍♀ woman biking # 🚎🏻‍♀ woman biking: light skin tone # 🚎🏻‍♀ woman biking: light skin tone # 🚎🏌‍♀ woman biking: medium-light skin tone # 🚎🏌‍♀ woman biking: medium-light skin tone # 🚎🏜‍♀ woman biking: medium skin tone # 🚎🏜‍♀ woman biking: medium skin tone # 🚎🏟‍♀ woman biking: medium-dark skin tone # 🚎🏟‍♀ woman biking: medium-dark skin tone # 🚎🏿‍♀ woman biking: dark skin tone # 🚎🏿‍♀ woman biking: dark skin tone # 🚵 person mountain biking # 🚵🏻 person mountain biking: light skin tone # 🚵🏌 person mountain biking: medium-light skin tone # 🚵🏜 person mountain biking: medium skin tone # 🚵🏟 person mountain biking: medium-dark skin tone # 🚵🏿 person mountain biking: dark skin tone # 🚵‍♂ man mountain biking # 🚵‍♂ man mountain biking # 🚵🏻‍♂ man mountain biking: light skin tone # 🚵🏻‍♂ man mountain biking: light skin tone # 🚵🏌‍♂ man mountain biking: medium-light skin tone # 🚵🏌‍♂ man mountain biking: medium-light skin tone # 🚵🏜‍♂ man mountain biking: medium skin tone # 🚵🏜‍♂ man mountain biking: medium skin tone # 🚵🏟‍♂ man mountain biking: medium-dark skin tone # 🚵🏟‍♂ man mountain biking: medium-dark skin tone # 🚵🏿‍♂ man mountain biking: dark skin tone # 🚵🏿‍♂ man mountain biking: dark skin tone # 🚵‍♀ woman mountain biking # 🚵‍♀ woman mountain biking # 🚵🏻‍♀ woman mountain biking: light skin tone # 🚵🏻‍♀ woman mountain biking: light skin tone # 🚵🏌‍♀ woman mountain biking: medium-light skin tone # 🚵🏌‍♀ woman mountain biking: medium-light skin tone # 🚵🏜‍♀ woman mountain biking: medium skin tone # 🚵🏜‍♀ woman mountain biking: medium skin tone # 🚵🏟‍♀ woman mountain biking: medium-dark skin tone # 🚵🏟‍♀ woman mountain biking: medium-dark skin tone # 🚵🏿‍♀ woman mountain biking: dark skin tone # 🚵🏿‍♀ woman mountain biking: dark skin tone # 🀞 person cartwheeling # 🀞🏻 person cartwheeling: light skin tone # 🀞🏌 person cartwheeling: medium-light skin tone # 🀞🏜 person cartwheeling: medium skin tone # 🀞🏟 person cartwheeling: medium-dark skin tone # 🀞🏿 person cartwheeling: dark skin tone # 🀞‍♂ man cartwheeling # 🀞‍♂ man cartwheeling # 🀞🏻‍♂ man cartwheeling: light skin tone # 🀞🏻‍♂ man cartwheeling: light skin tone # 🀞🏌‍♂ man cartwheeling: medium-light skin tone # 🀞🏌‍♂ man cartwheeling: medium-light skin tone # 🀞🏜‍♂ man cartwheeling: medium skin tone # 🀞🏜‍♂ man cartwheeling: medium skin tone # 🀞🏟‍♂ man cartwheeling: medium-dark skin tone # 🀞🏟‍♂ man cartwheeling: medium-dark skin tone # 🀞🏿‍♂ man cartwheeling: dark skin tone # 🀞🏿‍♂ man cartwheeling: dark skin tone # 🀞‍♀ woman cartwheeling # 🀞‍♀ woman cartwheeling # 🀞🏻‍♀ woman cartwheeling: light skin tone # 🀞🏻‍♀ woman cartwheeling: light skin tone # 🀞🏌‍♀ woman cartwheeling: medium-light skin tone # 🀞🏌‍♀ woman cartwheeling: medium-light skin tone # 🀞🏜‍♀ woman cartwheeling: medium skin tone # 🀞🏜‍♀ woman cartwheeling: medium skin tone # 🀞🏟‍♀ woman cartwheeling: medium-dark skin tone # 🀞🏟‍♀ woman cartwheeling: medium-dark skin tone # 🀞🏿‍♀ woman cartwheeling: dark skin tone # 🀞🏿‍♀ woman cartwheeling: dark skin tone # 🀌 people wrestling # 🀌‍♂ men wrestling # 🀌‍♂ men wrestling # 🀌‍♀ women wrestling # 🀌‍♀ women wrestling # 🀜 person playing water polo # 🀜🏻 person playing water polo: light skin tone # 🀜🏌 person playing water polo: medium-light skin tone # 🀜🏜 person playing water polo: medium skin tone # 🀜🏟 person playing water polo: medium-dark skin tone # 🀜🏿 person playing water polo: dark skin tone # 🀜‍♂ man playing water polo # 🀜‍♂ man playing water polo # 🀜🏻‍♂ man playing water polo: light skin tone # 🀜🏻‍♂ man playing water polo: light skin tone # 🀜🏌‍♂ man playing water polo: medium-light skin tone # 🀜🏌‍♂ man playing water polo: medium-light skin tone # 🀜🏜‍♂ man playing water polo: medium skin tone # 🀜🏜‍♂ man playing water polo: medium skin tone # 🀜🏟‍♂ man playing water polo: medium-dark skin tone # 🀜🏟‍♂ man playing water polo: medium-dark skin tone # 🀜🏿‍♂ man playing water polo: dark skin tone # 🀜🏿‍♂ man playing water polo: dark skin tone # 🀜‍♀ woman playing water polo # 🀜‍♀ woman playing water polo # 🀜🏻‍♀ woman playing water polo: light skin tone # 🀜🏻‍♀ woman playing water polo: light skin tone # 🀜🏌‍♀ woman playing water polo: medium-light skin tone # 🀜🏌‍♀ woman playing water polo: medium-light skin tone # 🀜🏜‍♀ woman playing water polo: medium skin tone # 🀜🏜‍♀ woman playing water polo: medium skin tone # 🀜🏟‍♀ woman playing water polo: medium-dark skin tone # 🀜🏟‍♀ woman playing water polo: medium-dark skin tone # 🀜🏿‍♀ woman playing water polo: dark skin tone # 🀜🏿‍♀ woman playing water polo: dark skin tone # 🀟 person playing handball # 🀟🏻 person playing handball: light skin tone # 🀟🏌 person playing handball: medium-light skin tone # 🀟🏜 person playing handball: medium skin tone # 🀟🏟 person playing handball: medium-dark skin tone # 🀟🏿 person playing handball: dark skin tone # 🀟‍♂ man playing handball # 🀟‍♂ man playing handball # 🀟🏻‍♂ man playing handball: light skin tone # 🀟🏻‍♂ man playing handball: light skin tone # 🀟🏌‍♂ man playing handball: medium-light skin tone # 🀟🏌‍♂ man playing handball: medium-light skin tone # 🀟🏜‍♂ man playing handball: medium skin tone # 🀟🏜‍♂ man playing handball: medium skin tone # 🀟🏟‍♂ man playing handball: medium-dark skin tone # 🀟🏟‍♂ man playing handball: medium-dark skin tone # 🀟🏿‍♂ man playing handball: dark skin tone # 🀟🏿‍♂ man playing handball: dark skin tone # 🀟‍♀ woman playing handball # 🀟‍♀ woman playing handball # 🀟🏻‍♀ woman playing handball: light skin tone # 🀟🏻‍♀ woman playing handball: light skin tone # 🀟🏌‍♀ woman playing handball: medium-light skin tone # 🀟🏌‍♀ woman playing handball: medium-light skin tone # 🀟🏜‍♀ woman playing handball: medium skin tone # 🀟🏜‍♀ woman playing handball: medium skin tone # 🀟🏟‍♀ woman playing handball: medium-dark skin tone # 🀟🏟‍♀ woman playing handball: medium-dark skin tone # 🀟🏿‍♀ woman playing handball: dark skin tone # 🀟🏿‍♀ woman playing handball: dark skin tone # 🀹 person juggling # 🀹🏻 person juggling: light skin tone # 🀹🏌 person juggling: medium-light skin tone # 🀹🏜 person juggling: medium skin tone # 🀹🏟 person juggling: medium-dark skin tone # 🀹🏿 person juggling: dark skin tone # 🀹‍♂ man juggling # 🀹‍♂ man juggling # 🀹🏻‍♂ man juggling: light skin tone # 🀹🏻‍♂ man juggling: light skin tone # 🀹🏌‍♂ man juggling: medium-light skin tone # 🀹🏌‍♂ man juggling: medium-light skin tone # 🀹🏜‍♂ man juggling: medium skin tone # 🀹🏜‍♂ man juggling: medium skin tone # 🀹🏟‍♂ man juggling: medium-dark skin tone # 🀹🏟‍♂ man juggling: medium-dark skin tone # 🀹🏿‍♂ man juggling: dark skin tone # 🀹🏿‍♂ man juggling: dark skin tone # 🀹‍♀ woman juggling # 🀹‍♀ woman juggling # 🀹🏻‍♀ woman juggling: light skin tone # 🀹🏻‍♀ woman juggling: light skin tone # 🀹🏌‍♀ woman juggling: medium-light skin tone # 🀹🏌‍♀ woman juggling: medium-light skin tone # 🀹🏜‍♀ woman juggling: medium skin tone # 🀹🏜‍♀ woman juggling: medium skin tone # 🀹🏟‍♀ woman juggling: medium-dark skin tone # 🀹🏟‍♀ woman juggling: medium-dark skin tone # 🀹🏿‍♀ woman juggling: dark skin tone # 🀹🏿‍♀ woman juggling: dark skin tone # subgroup: person-resting # 🧘 person in lotus position # 🧘🏻 person in lotus position: light skin tone # 🧘🏌 person in lotus position: medium-light skin tone # 🧘🏜 person in lotus position: medium skin tone # 🧘🏟 person in lotus position: medium-dark skin tone # 🧘🏿 person in lotus position: dark skin tone # 🧘‍♂ man in lotus position # 🧘‍♂ man in lotus position # 🧘🏻‍♂ man in lotus position: light skin tone # 🧘🏻‍♂ man in lotus position: light skin tone # 🧘🏌‍♂ man in lotus position: medium-light skin tone # 🧘🏌‍♂ man in lotus position: medium-light skin tone # 🧘🏜‍♂ man in lotus position: medium skin tone # 🧘🏜‍♂ man in lotus position: medium skin tone # 🧘🏟‍♂ man in lotus position: medium-dark skin tone # 🧘🏟‍♂ man in lotus position: medium-dark skin tone # 🧘🏿‍♂ man in lotus position: dark skin tone # 🧘🏿‍♂ man in lotus position: dark skin tone # 🧘‍♀ woman in lotus position # 🧘‍♀ woman in lotus position # 🧘🏻‍♀ woman in lotus position: light skin tone # 🧘🏻‍♀ woman in lotus position: light skin tone # 🧘🏌‍♀ woman in lotus position: medium-light skin tone # 🧘🏌‍♀ woman in lotus position: medium-light skin tone # 🧘🏜‍♀ woman in lotus position: medium skin tone # 🧘🏜‍♀ woman in lotus position: medium skin tone # 🧘🏟‍♀ woman in lotus position: medium-dark skin tone # 🧘🏟‍♀ woman in lotus position: medium-dark skin tone # 🧘🏿‍♀ woman in lotus position: dark skin tone # 🧘🏿‍♀ woman in lotus position: dark skin tone # 🛀 person taking bath # 🛀🏻 person taking bath: light skin tone # 🛀🏌 person taking bath: medium-light skin tone # 🛀🏜 person taking bath: medium skin tone # 🛀🏟 person taking bath: medium-dark skin tone # 🛀🏿 person taking bath: dark skin tone # 🛌 person in bed # 🛌🏻 person in bed: light skin tone # 🛌🏌 person in bed: medium-light skin tone # 🛌🏜 person in bed: medium skin tone # 🛌🏟 person in bed: medium-dark skin tone # 🛌🏿 person in bed: dark skin tone # subgroup: family # 🧑‍🀝‍🧑 people holding hands # 🧑🏻‍🀝‍🧑🏻 people holding hands: light skin tone # 🧑🏌‍🀝‍🧑🏻 people holding hands: medium-light skin tone, light skin tone # 🧑🏌‍🀝‍🧑🏌 people holding hands: medium-light skin tone # 🧑🏜‍🀝‍🧑🏻 people holding hands: medium skin tone, light skin tone # 🧑🏜‍🀝‍🧑🏌 people holding hands: medium skin tone, medium-light skin tone # 🧑🏜‍🀝‍🧑🏜 people holding hands: medium skin tone # 🧑🏟‍🀝‍🧑🏻 people holding hands: medium-dark skin tone, light skin tone # 🧑🏟‍🀝‍🧑🏌 people holding hands: medium-dark skin tone, medium-light skin tone # 🧑🏟‍🀝‍🧑🏜 people holding hands: medium-dark skin tone, medium skin tone # 🧑🏟‍🀝‍🧑🏟 people holding hands: medium-dark skin tone # 🧑🏿‍🀝‍🧑🏻 people holding hands: dark skin tone, light skin tone # 🧑🏿‍🀝‍🧑🏌 people holding hands: dark skin tone, medium-light skin tone # 🧑🏿‍🀝‍🧑🏜 people holding hands: dark skin tone, medium skin tone # 🧑🏿‍🀝‍🧑🏟 people holding hands: dark skin tone, medium-dark skin tone # 🧑🏿‍🀝‍🧑🏿 people holding hands: dark skin tone # 👭 women holding hands # 👭🏻 women holding hands: light skin tone # 👩🏌‍🀝‍👩🏻 women holding hands: medium-light skin tone, light skin tone # 👭🏌 women holding hands: medium-light skin tone # 👩🏜‍🀝‍👩🏻 women holding hands: medium skin tone, light skin tone # 👩🏜‍🀝‍👩🏌 women holding hands: medium skin tone, medium-light skin tone # 👭🏜 women holding hands: medium skin tone # 👩🏟‍🀝‍👩🏻 women holding hands: medium-dark skin tone, light skin tone # 👩🏟‍🀝‍👩🏌 women holding hands: medium-dark skin tone, medium-light skin tone # 👩🏟‍🀝‍👩🏜 women holding hands: medium-dark skin tone, medium skin tone # 👭🏟 women holding hands: medium-dark skin tone # 👩🏿‍🀝‍👩🏻 women holding hands: dark skin tone, light skin tone # 👩🏿‍🀝‍👩🏌 women holding hands: dark skin tone, medium-light skin tone # 👩🏿‍🀝‍👩🏜 women holding hands: dark skin tone, medium skin tone # 👩🏿‍🀝‍👩🏟 women holding hands: dark skin tone, medium-dark skin tone # 👭🏿 women holding hands: dark skin tone # 👫 woman and man holding hands # 👫🏻 woman and man holding hands: light skin tone # 👩🏻‍🀝‍👚🏌 woman and man holding hands: light skin tone, medium-light skin tone # 👩🏻‍🀝‍👚🏜 woman and man holding hands: light skin tone, medium skin tone # 👩🏻‍🀝‍👚🏟 woman and man holding hands: light skin tone, medium-dark skin tone # 👩🏻‍🀝‍👚🏿 woman and man holding hands: light skin tone, dark skin tone # 👩🏌‍🀝‍👚🏻 woman and man holding hands: medium-light skin tone, light skin tone # 👫🏌 woman and man holding hands: medium-light skin tone # 👩🏌‍🀝‍👚🏜 woman and man holding hands: medium-light skin tone, medium skin tone # 👩🏌‍🀝‍👚🏟 woman and man holding hands: medium-light skin tone, medium-dark skin tone # 👩🏌‍🀝‍👚🏿 woman and man holding hands: medium-light skin tone, dark skin tone # 👩🏜‍🀝‍👚🏻 woman and man holding hands: medium skin tone, light skin tone # 👩🏜‍🀝‍👚🏌 woman and man holding hands: medium skin tone, medium-light skin tone # 👫🏜 woman and man holding hands: medium skin tone # 👩🏜‍🀝‍👚🏟 woman and man holding hands: medium skin tone, medium-dark skin tone # 👩🏜‍🀝‍👚🏿 woman and man holding hands: medium skin tone, dark skin tone # 👩🏟‍🀝‍👚🏻 woman and man holding hands: medium-dark skin tone, light skin tone # 👩🏟‍🀝‍👚🏌 woman and man holding hands: medium-dark skin tone, medium-light skin tone # 👩🏟‍🀝‍👚🏜 woman and man holding hands: medium-dark skin tone, medium skin tone # 👫🏟 woman and man holding hands: medium-dark skin tone # 👩🏟‍🀝‍👚🏿 woman and man holding hands: medium-dark skin tone, dark skin tone # 👩🏿‍🀝‍👚🏻 woman and man holding hands: dark skin tone, light skin tone # 👩🏿‍🀝‍👚🏌 woman and man holding hands: dark skin tone, medium-light skin tone # 👩🏿‍🀝‍👚🏜 woman and man holding hands: dark skin tone, medium skin tone # 👩🏿‍🀝‍👚🏟 woman and man holding hands: dark skin tone, medium-dark skin tone # 👫🏿 woman and man holding hands: dark skin tone # 👬 men holding hands # 👬🏻 men holding hands: light skin tone # 👚🏌‍🀝‍👚🏻 men holding hands: medium-light skin tone, light skin tone # 👬🏌 men holding hands: medium-light skin tone # 👚🏜‍🀝‍👚🏻 men holding hands: medium skin tone, light skin tone # 👚🏜‍🀝‍👚🏌 men holding hands: medium skin tone, medium-light skin tone # 👬🏜 men holding hands: medium skin tone # 👚🏟‍🀝‍👚🏻 men holding hands: medium-dark skin tone, light skin tone # 👚🏟‍🀝‍👚🏌 men holding hands: medium-dark skin tone, medium-light skin tone # 👚🏟‍🀝‍👚🏜 men holding hands: medium-dark skin tone, medium skin tone # 👬🏟 men holding hands: medium-dark skin tone # 👚🏿‍🀝‍👚🏻 men holding hands: dark skin tone, light skin tone # 👚🏿‍🀝‍👚🏌 men holding hands: dark skin tone, medium-light skin tone # 👚🏿‍🀝‍👚🏜 men holding hands: dark skin tone, medium skin tone # 👚🏿‍🀝‍👚🏟 men holding hands: dark skin tone, medium-dark skin tone # 👬🏿 men holding hands: dark skin tone # 💏 kiss # 👩‍❀‍💋‍👚 kiss: woman, man # 👩‍❀‍💋‍👚 kiss: woman, man # 👚‍❀‍💋‍👚 kiss: man, man # 👚‍❀‍💋‍👚 kiss: man, man # 👩‍❀‍💋‍👩 kiss: woman, woman # 👩‍❀‍💋‍👩 kiss: woman, woman # 💑 couple with heart # 👩‍❀‍👚 couple with heart: woman, man # 👩‍❀‍👚 couple with heart: woman, man # 👚‍❀‍👚 couple with heart: man, man # 👚‍❀‍👚 couple with heart: man, man # 👩‍❀‍👩 couple with heart: woman, woman # 👩‍❀‍👩 couple with heart: woman, woman # 👪 family # 👚‍👩‍👊 family: man, woman, boy # 👚‍👩‍👧 family: man, woman, girl # 👚‍👩‍👧‍👊 family: man, woman, girl, boy # 👚‍👩‍👊‍👊 family: man, woman, boy, boy # 👚‍👩‍👧‍👧 family: man, woman, girl, girl # 👚‍👚‍👊 family: man, man, boy # 👚‍👚‍👧 family: man, man, girl # 👚‍👚‍👧‍👊 family: man, man, girl, boy # 👚‍👚‍👊‍👊 family: man, man, boy, boy # 👚‍👚‍👧‍👧 family: man, man, girl, girl # 👩‍👩‍👊 family: woman, woman, boy # 👩‍👩‍👧 family: woman, woman, girl # 👩‍👩‍👧‍👊 family: woman, woman, girl, boy # 👩‍👩‍👊‍👊 family: woman, woman, boy, boy # 👩‍👩‍👧‍👧 family: woman, woman, girl, girl # 👚‍👊 family: man, boy # 👚‍👊‍👊 family: man, boy, boy # 👚‍👧 family: man, girl # 👚‍👧‍👊 family: man, girl, boy # 👚‍👧‍👧 family: man, girl, girl # 👩‍👊 family: woman, boy # 👩‍👊‍👊 family: woman, boy, boy # 👩‍👧 family: woman, girl # 👩‍👧‍👊 family: woman, girl, boy # 👩‍👧‍👧 family: woman, girl, girl # subgroup: person-symbol # 🗣 speaking head # 🗣 speaking head # 👀 bust in silhouette # 👥 busts in silhouette # 👣 footprints # People & Body subtotal: 2212 # People & Body subtotal: 447 w/o modifiers # group: Component # subgroup: skin-tone # 🏻 light skin tone # 🏌 medium-light skin tone # 🏜 medium skin tone # 🏟 medium-dark skin tone # 🏿 dark skin tone # subgroup: hair-style # 🊰 red hair # 🊱 curly hair # 🊳 white hair # 🊲 bald # Component subtotal: 9 # Component subtotal: 4 w/o modifiers # group: Animals & Nature # subgroup: animal-mammal # 🐵 monkey face # 🐒 monkey # 🊍 gorilla # 🊧 orangutan # 🐶 dog face # 🐕 dog # 🊮 guide dog # 🐕‍🊺 service dog # 🐩 poodle # 🐺 wolf # 🊊 fox # 🊝 raccoon # 🐱 cat face # 🐈 cat # 🊁 lion # 🐯 tiger face # 🐅 tiger # 🐆 leopard # 🐎 horse face # 🐎 horse # 🊄 unicorn # 🊓 zebra # 🊌 deer # 🐮 cow face # 🐂 ox # 🐃 water buffalo # 🐄 cow # 🐷 pig face # 🐖 pig # 🐗 boar # 🐜 pig nose # 🐏 ram # 🐑 ewe # 🐐 goat # 🐪 camel # 🐫 two-hump camel # 🊙 llama # 🊒 giraffe # 🐘 elephant # 🊏 rhinoceros # 🊛 hippopotamus # 🐭 mouse face # 🐁 mouse # 🐀 rat # 🐹 hamster # 🐰 rabbit face # 🐇 rabbit # 🐿 chipmunk # 🐿 chipmunk # 🊔 hedgehog # 🊇 bat # 🐻 bear # 🐚 koala # 🐌 panda # 🊥 sloth # 🊊 otter # 🊚 skunk # 🊘 kangaroo # 🊡 badger # 🐟 paw prints # subgroup: animal-bird # 🊃 turkey # 🐔 chicken # 🐓 rooster # 🐣 hatching chick # 🐀 baby chick # 🐥 front-facing baby chick # 🐊 bird # 🐧 penguin # 🕊 dove # 🕊 dove # 🊅 eagle # 🊆 duck # 🊢 swan # 🊉 owl # 🊩 flamingo # 🊚 peacock # 🊜 parrot # subgroup: animal-amphibian # 🐞 frog # subgroup: animal-reptile # 🐊 crocodile # 🐢 turtle # 🊎 lizard # 🐍 snake # 🐲 dragon face # 🐉 dragon # 🊕 sauropod # 🊖 T-Rex # subgroup: animal-marine # 🐳 spouting whale # 🐋 whale # 🐬 dolphin # 🐟 fish # 🐠 tropical fish # 🐡 blowfish # 🊈 shark # 🐙 octopus # 🐚 spiral shell # subgroup: animal-bug # 🐌 snail # 🊋 butterfly # 🐛 bug # 🐜 ant # 🐝 honeybee # 🐞 lady beetle # 🊗 cricket # 🕷 spider # 🕷 spider # 🕞 spider web # 🕞 spider web # 🊂 scorpion # 🊟 mosquito # 🊠 microbe # subgroup: plant-flower # 💐 bouquet # 🌞 cherry blossom # 💮 white flower # 🏵 rosette # 🏵 rosette # 🌹 rose # 🥀 wilted flower # 🌺 hibiscus # 🌻 sunflower # 🌌 blossom # 🌷 tulip # subgroup: plant-other # 🌱 seedling # 🌲 evergreen tree # 🌳 deciduous tree # 🌎 palm tree # 🌵 cactus # 🌟 sheaf of rice # 🌿 herb # ☘ shamrock # ☘ shamrock # 🍀 four leaf clover # 🍁 maple leaf # 🍂 fallen leaf # 🍃 leaf fluttering in wind # Animals & Nature subtotal: 133 # Animals & Nature subtotal: 133 w/o modifiers # group: Food & Drink # subgroup: food-fruit # 🍇 grapes # 🍈 melon # 🍉 watermelon # 🍊 tangerine # 🍋 lemon # 🍌 banana # 🍍 pineapple # 🥭 mango # 🍎 red apple # 🍏 green apple # 🍐 pear # 🍑 peach # 🍒 cherries # 🍓 strawberry # 🥝 kiwi fruit # 🍅 tomato # 🥥 coconut # subgroup: food-vegetable # 🥑 avocado # 🍆 eggplant # 🥔 potato # 🥕 carrot # 🌜 ear of corn # 🌶 hot pepper # 🌶 hot pepper # 🥒 cucumber # 🥬 leafy green # 🥊 broccoli # 🧄 garlic # 🧅 onion # 🍄 mushroom # 🥜 peanuts # 🌰 chestnut # subgroup: food-prepared # 🍞 bread # 🥐 croissant # 🥖 baguette bread # 🥚 pretzel # 🥯 bagel # 🥞 pancakes # 🧇 waffle # 🧀 cheese wedge # 🍖 meat on bone # 🍗 poultry leg # 🥩 cut of meat # 🥓 bacon # 🍔 hamburger # 🍟 french fries # 🍕 pizza # 🌭 hot dog # 🥪 sandwich # 🌮 taco # 🌯 burrito # 🥙 stuffed flatbread # 🧆 falafel # 🥚 egg # 🍳 cooking # 🥘 shallow pan of food # 🍲 pot of food # 🥣 bowl with spoon # 🥗 green salad # 🍿 popcorn # 🧈 butter # 🧂 salt # 🥫 canned food # subgroup: food-asian # 🍱 bento box # 🍘 rice cracker # 🍙 rice ball # 🍚 cooked rice # 🍛 curry rice # 🍜 steaming bowl # 🍝 spaghetti # 🍠 roasted sweet potato # 🍢 oden # 🍣 sushi # 🍀 fried shrimp # 🍥 fish cake with swirl # 🥮 moon cake # 🍡 dango # 🥟 dumpling # 🥠 fortune cookie # 🥡 takeout box # subgroup: food-marine # 🊀 crab # 🊞 lobster # 🊐 shrimp # 🊑 squid # 🊪 oyster # subgroup: food-sweet # 🍊 soft ice cream # 🍧 shaved ice # 🍚 ice cream # 🍩 doughnut # 🍪 cookie # 🎂 birthday cake # 🍰 shortcake # 🧁 cupcake # 🥧 pie # 🍫 chocolate bar # 🍬 candy # 🍭 lollipop # 🍮 custard # 🍯 honey pot # subgroup: drink # 🍌 baby bottle # 🥛 glass of milk # ☕ hot beverage # 🍵 teacup without handle # 🍶 sake # 🍟 bottle with popping cork # 🍷 wine glass # 🍞 cocktail glass # 🍹 tropical drink # 🍺 beer mug # 🍻 clinking beer mugs # 🥂 clinking glasses # 🥃 tumbler glass # 🥀 cup with straw # 🧃 beverage box # 🧉 mate # 🧊 ice cube # subgroup: dishware # 🥢 chopsticks # 🍜 fork and knife with plate # 🍜 fork and knife with plate # 🍎 fork and knife # 🥄 spoon # 🔪 kitchen knife # 🏺 amphora # Food & Drink subtotal: 123 # Food & Drink subtotal: 123 w/o modifiers # group: Travel & Places # subgroup: place-map # 🌍 globe showing Europe-Africa # 🌎 globe showing Americas # 🌏 globe showing Asia-Australia # 🌐 globe with meridians # 🗺 world map # 🗺 world map # 🗟 map of Japan # 🧭 compass # subgroup: place-geographic # 🏔 snow-capped mountain # 🏔 snow-capped mountain # ⛰ mountain # ⛰ mountain # 🌋 volcano # 🗻 mount fuji # 🏕 camping # 🏕 camping # 🏖 beach with umbrella # 🏖 beach with umbrella # 🏜 desert # 🏜 desert # 🏝 desert island # 🏝 desert island # 🏞 national park # 🏞 national park # subgroup: place-building # 🏟 stadium # 🏟 stadium # 🏛 classical building # 🏛 classical building # 🏗 building construction # 🏗 building construction # 🧱 brick # 🏘 houses # 🏘 houses # 🏚 derelict house # 🏚 derelict house # 🏠 house # 🏡 house with garden # 🏢 office building # 🏣 Japanese post office # 🏀 post office # 🏥 hospital # 🏊 bank # 🏚 hotel # 🏩 love hotel # 🏪 convenience store # 🏫 school # 🏬 department store # 🏭 factory # 🏯 Japanese castle # 🏰 castle # 💒 wedding # 🗌 Tokyo tower # 🗜 Statue of Liberty # subgroup: place-religious # ⛪ church # 🕌 mosque # 🛕 hindu temple # 🕍 synagogue # ⛩ shinto shrine # ⛩ shinto shrine # 🕋 kaaba # subgroup: place-other # ⛲ fountain # ⛺ tent # 🌁 foggy # 🌃 night with stars # 🏙 cityscape # 🏙 cityscape # 🌄 sunrise over mountains # 🌅 sunrise # 🌆 cityscape at dusk # 🌇 sunset # 🌉 bridge at night # ♚ hot springs # ♹ hot springs # 🎠 carousel horse # 🎡 ferris wheel # 🎢 roller coaster # 💈 barber pole # 🎪 circus tent # subgroup: transport-ground # 🚂 locomotive # 🚃 railway car # 🚄 high-speed train # 🚅 bullet train # 🚆 train # 🚇 metro # 🚈 light rail # 🚉 station # 🚊 tram # 🚝 monorail # 🚞 mountain railway # 🚋 tram car # 🚌 bus # 🚍 oncoming bus # 🚎 trolleybus # 🚐 minibus # 🚑 ambulance # 🚒 fire engine # 🚓 police car # 🚔 oncoming police car # 🚕 taxi # 🚖 oncoming taxi # 🚗 automobile # 🚘 oncoming automobile # 🚙 sport utility vehicle # 🚚 delivery truck # 🚛 articulated lorry # 🚜 tractor # 🏎 racing car # 🏎 racing car # 🏍 motorcycle # 🏍 motorcycle # 🛵 motor scooter # 🊜 manual wheelchair # 🊌 motorized wheelchair # 🛺 auto rickshaw # 🚲 bicycle # 🛎 kick scooter # 🛹 skateboard # 🚏 bus stop # 🛣 motorway # 🛣 motorway # 🛀 railway track # 🛀 railway track # 🛢 oil drum # 🛢 oil drum # ⛜ fuel pump # 🚚 police car light # 🚥 horizontal traffic light # 🚊 vertical traffic light # 🛑 stop sign # 🚧 construction # subgroup: transport-water # ⚓ anchor # ⛵ sailboat # 🛶 canoe # 🚀 speedboat # 🛳 passenger ship # 🛳 passenger ship # ⛎ ferry # ⛮ ferry # 🛥 motor boat # 🛥 motor boat # 🚢 ship # subgroup: transport-air # ✈ airplane # ✈ airplane # 🛩 small airplane # 🛩 small airplane # 🛫 airplane departure # 🛬 airplane arrival # 🪂 parachute # 💺 seat # 🚁 helicopter # 🚟 suspension railway # 🚠 mountain cableway # 🚡 aerial tramway # 🛰 satellite # 🛰 satellite # 🚀 rocket # 🛞 flying saucer # subgroup: hotel # 🛎 bellhop bell # 🛎 bellhop bell # 🧳 luggage # subgroup: time # ⌛ hourglass done # ⏳ hourglass not done # ⌚ watch # ⏰ alarm clock # ⏱ stopwatch # ⏱ stopwatch # ⏲ timer clock # ⏲ timer clock # 🕰 mantelpiece clock # 🕰 mantelpiece clock # 🕛 twelve o’clock # 🕧 twelve-thirty # 🕐 one o’clock # 🕜 one-thirty # 🕑 two o’clock # 🕝 two-thirty # 🕒 three o’clock # 🕞 three-thirty # 🕓 four o’clock # 🕟 four-thirty # 🕔 five o’clock # 🕠 five-thirty # 🕕 six o’clock # 🕡 six-thirty # 🕖 seven o’clock # 🕢 seven-thirty # 🕗 eight o’clock # 🕣 eight-thirty # 🕘 nine o’clock # 🕀 nine-thirty # 🕙 ten o’clock # 🕥 ten-thirty # 🕚 eleven o’clock # 🕊 eleven-thirty # subgroup: sky & weather # 🌑 new moon # 🌒 waxing crescent moon # 🌓 first quarter moon # 🌔 waxing gibbous moon # 🌕 full moon # 🌖 waning gibbous moon # 🌗 last quarter moon # 🌘 waning crescent moon # 🌙 crescent moon # 🌚 new moon face # 🌛 first quarter moon face # 🌜 last quarter moon face # 🌡 thermometer # 🌡 thermometer # ☀ sun # ☀ sun # 🌝 full moon face # 🌞 sun with face # 🪐 ringed planet # ⭐ star # 🌟 glowing star # 🌠 shooting star # 🌌 milky way # ☁ cloud # ☁ cloud # ⛅ sun behind cloud # ⛈ cloud with lightning and rain # ⛈ cloud with lightning and rain # 🌀 sun behind small cloud # 🌀 sun behind small cloud # 🌥 sun behind large cloud # 🌥 sun behind large cloud # 🌊 sun behind rain cloud # 🌊 sun behind rain cloud # 🌧 cloud with rain # 🌧 cloud with rain # 🌚 cloud with snow # 🌚 cloud with snow # 🌩 cloud with lightning # 🌩 cloud with lightning # 🌪 tornado # 🌪 tornado # 🌫 fog # 🌫 fog # 🌬 wind face # 🌬 wind face # 🌀 cyclone # 🌈 rainbow # 🌂 closed umbrella # ☂ umbrella # ☂ umbrella # ☔ umbrella with rain drops # ⛱ umbrella on ground # ⛱ umbrella on ground # ⚡ high voltage # ❄ snowflake # ❄ snowflake # ☃ snowman # ☃ snowman # ⛄ snowman without snow # ☄ comet # ☄ comet # 🔥 fire # 💧 droplet # 🌊 water wave # Travel & Places subtotal: 259 # Travel & Places subtotal: 259 w/o modifiers # group: Activities # subgroup: event # 🎃 jack-o-lantern # 🎄 Christmas tree # 🎆 fireworks # 🎇 sparkler # 🧚 firecracker # ✹ sparkles # 🎈 balloon # 🎉 party popper # 🎊 confetti ball # 🎋 tanabata tree # 🎍 pine decoration # 🎎 Japanese dolls # 🎏 carp streamer # 🎐 wind chime # 🎑 moon viewing ceremony # 🧧 red envelope # 🎀 ribbon # 🎁 wrapped gift # 🎗 reminder ribbon # 🎗 reminder ribbon # 🎟 admission tickets # 🎟 admission tickets # 🎫 ticket # subgroup: award-medal # 🎖 military medal # 🎖 military medal # 🏆 trophy # 🏅 sports medal # 🥇 1st place medal # 🥈 2nd place medal # 🥉 3rd place medal # subgroup: sport # âšœ soccer ball # ⚟ baseball # 🥎 softball # 🏀 basketball # 🏐 volleyball # 🏈 american football # 🏉 rugby football # 🎟 tennis # 🥏 flying disc # 🎳 bowling # 🏏 cricket game # 🏑 field hockey # 🏒 ice hockey # 🥍 lacrosse # 🏓 ping pong # 🏞 badminton # 🥊 boxing glove # 🥋 martial arts uniform # 🥅 goal net # ⛳ flag in hole # ⛞ ice skate # ⛾ ice skate # 🎣 fishing pole # 🀿 diving mask # 🎜 running shirt # 🎿 skis # 🛷 sled # 🥌 curling stone # subgroup: game # 🎯 direct hit # 🪀 yo-yo # 🪁 kite # 🎱 pool 8 ball # 🔮 crystal ball # 🧿 nazar amulet # 🎮 video game # 🕹 joystick # 🕹 joystick # 🎰 slot machine # 🎲 game die # 🧩 puzzle piece # 🧞 teddy bear # ♠ spade suit # ♠ spade suit # ♥ heart suit # ♥ heart suit # ♊ diamond suit # ♩ diamond suit # ♣ club suit # ♣ club suit # ♟ chess pawn # ♟ chess pawn # 🃏 joker # 🀄 mahjong red dragon # 🎎 flower playing cards # subgroup: arts & crafts # 🎭 performing arts # 🖌 framed picture # 🖌 framed picture # 🎚 artist palette # 🧵 thread # 🧶 yarn # Activities subtotal: 90 # Activities subtotal: 90 w/o modifiers # group: Objects # subgroup: clothing # 👓 glasses # 🕶 sunglasses # 🕶 sunglasses # 🥜 goggles # 🥌 lab coat # 🊺 safety vest # 👔 necktie # 👕 t-shirt # 👖 jeans # 🧣 scarf # 🧀 gloves # 🧥 coat # 🧊 socks # 👗 dress # 👘 kimono # 🥻 sari # 🩱 one-piece swimsuit # 🩲 swim brief # 🩳 shorts # 👙 bikini # 👚 woman’s clothes # 👛 purse # 👜 handbag # 👝 clutch bag # 🛍 shopping bags # 🛍 shopping bags # 🎒 backpack # 👞 man’s shoe # 👟 running shoe # 🥟 hiking boot # 🥿 flat shoe # 👠 high-heeled shoe # 👡 woman’s sandal # 🩰 ballet shoes # 👢 woman’s boot # 👑 crown # 👒 woman’s hat # 🎩 top hat # 🎓 graduation cap # 🧢 billed cap # ⛑ rescue worker’s helmet # ⛑ rescue worker’s helmet # 📿 prayer beads # 💄 lipstick # 💍 ring # 💎 gem stone # subgroup: sound # 🔇 muted speaker # 🔈 speaker low volume # 🔉 speaker medium volume # 🔊 speaker high volume # 📢 loudspeaker # 📣 megaphone # 📯 postal horn # 🔔 bell # 🔕 bell with slash # subgroup: music # 🎌 musical score # 🎵 musical note # 🎶 musical notes # 🎙 studio microphone # 🎙 studio microphone # 🎚 level slider # 🎚 level slider # 🎛 control knobs # 🎛 control knobs # 🎀 microphone # 🎧 headphone # 📻 radio # subgroup: musical-instrument # 🎷 saxophone # 🎞 guitar # 🎹 musical keyboard # 🎺 trumpet # 🎻 violin # 🪕 banjo # 🥁 drum # subgroup: phone # 📱 mobile phone # 📲 mobile phone with arrow # ☎ telephone # ☎ telephone # 📞 telephone receiver # 📟 pager # 📠 fax machine # subgroup: computer # 🔋 battery # 🔌 electric plug # 💻 laptop computer # 🖥 desktop computer # 🖥 desktop computer # 🖚 printer # 🖚 printer # ⌚ keyboard # ⌹ keyboard # 🖱 computer mouse # 🖱 computer mouse # 🖲 trackball # 🖲 trackball # 💜 computer disk # 💟 floppy disk # 💿 optical disk # 📀 dvd # 🧮 abacus # subgroup: light & video # 🎥 movie camera # 🎞 film frames # 🎞 film frames # 📜 film projector # 📜 film projector # 🎬 clapper board # 📺 television # 📷 camera # 📞 camera with flash # 📹 video camera # 📌 videocassette # 🔍 magnifying glass tilted left # 🔎 magnifying glass tilted right # 🕯 candle # 🕯 candle # 💡 light bulb # 🔊 flashlight # 🏮 red paper lantern # 🪔 diya lamp # subgroup: book-paper # 📔 notebook with decorative cover # 📕 closed book # 📖 open book # 📗 green book # 📘 blue book # 📙 orange book # 📚 books # 📓 notebook # 📒 ledger # 📃 page with curl # 📜 scroll # 📄 page facing up # 📰 newspaper # 🗞 rolled-up newspaper # 🗞 rolled-up newspaper # 📑 bookmark tabs # 🔖 bookmark # 🏷 label # 🏷 label # subgroup: money # 💰 money bag # 💎 yen banknote # 💵 dollar banknote # 💶 euro banknote # 💷 pound banknote # 💞 money with wings # 💳 credit card # 🧟 receipt # 💹 chart increasing with yen # 💱 currency exchange # 💲 heavy dollar sign # subgroup: mail # ✉ envelope # ✉ envelope # 📧 e-mail # 📚 incoming envelope # 📩 envelope with arrow # 📀 outbox tray # 📥 inbox tray # 📊 package # 📫 closed mailbox with raised flag # 📪 closed mailbox with lowered flag # 📬 open mailbox with raised flag # 📭 open mailbox with lowered flag # 📮 postbox # 🗳 ballot box with ballot # 🗳 ballot box with ballot # subgroup: writing # ✏ pencil # ✏ pencil # ✒ black nib # ✒ black nib # 🖋 fountain pen # 🖋 fountain pen # 🖊 pen # 🖊 pen # 🖌 paintbrush # 🖌 paintbrush # 🖍 crayon # 🖍 crayon # 📝 memo # subgroup: office # 💌 briefcase # 📁 file folder # 📂 open file folder # 🗂 card index dividers # 🗂 card index dividers # 📅 calendar # 📆 tear-off calendar # 🗒 spiral notepad # 🗒 spiral notepad # 🗓 spiral calendar # 🗓 spiral calendar # 📇 card index # 📈 chart increasing # 📉 chart decreasing # 📊 bar chart # 📋 clipboard # 📌 pushpin # 📍 round pushpin # 📎 paperclip # 🖇 linked paperclips # 🖇 linked paperclips # 📏 straight ruler # 📐 triangular ruler # ✂ scissors # ✂ scissors # 🗃 card file box # 🗃 card file box # 🗄 file cabinet # 🗄 file cabinet # 🗑 wastebasket # 🗑 wastebasket # subgroup: lock # 🔒 locked # 🔓 unlocked # 🔏 locked with pen # 🔐 locked with key # 🔑 key # 🗝 old key # 🗝 old key # subgroup: tool # 🔚 hammer # 🪓 axe # ⛏ pick # ⛏ pick # ⚒ hammer and pick # ⚒ hammer and pick # 🛠 hammer and wrench # 🛠 hammer and wrench # 🗡 dagger # 🗡 dagger # ⚔ crossed swords # ⚔ crossed swords # 🔫 pistol # 🏹 bow and arrow # 🛡 shield # 🛡 shield # 🔧 wrench # 🔩 nut and bolt # ⚙ gear # ⚙ gear # 🗜 clamp # 🗜 clamp # ⚖ balance scale # ⚖ balance scale # 🊯 probing cane # 🔗 link # ⛓ chains # ⛓ chains # 🧰 toolbox # 🧲 magnet # subgroup: science # ⚗ alembic # ⚗ alembic # 🧪 test tube # 🧫 petri dish # 🧬 dna # 🔬 microscope # 🔭 telescope # 📡 satellite antenna # subgroup: medical # 💉 syringe # 🩞 drop of blood # 💊 pill # 🩹 adhesive bandage # 🩺 stethoscope # subgroup: household # 🚪 door # 🛏 bed # 🛏 bed # 🛋 couch and lamp # 🛋 couch and lamp # 🪑 chair # 🚜 toilet # 🚿 shower # 🛁 bathtub # 🪒 razor # 🧎 lotion bottle # 🧷 safety pin # 🧹 broom # 🧺 basket # 🧻 roll of paper # 🧌 soap # 🧜 sponge # 🧯 fire extinguisher # 🛒 shopping cart # subgroup: other-object # 🚬 cigarette # ⚰ coffin # ⚰ coffin # ⚱ funeral urn # ⚱ funeral urn # 🗿 moai # Objects subtotal: 282 # Objects subtotal: 282 w/o modifiers # group: Symbols # subgroup: transport-sign # 🏧 ATM sign # 🚮 litter in bin sign # 🚰 potable water # ♿ wheelchair symbol # 🚹 men’s room # 🚺 women’s room # 🚻 restroom # 🚌 baby symbol # 🚟 water closet # 🛂 passport control # 🛃 customs # 🛄 baggage claim # 🛅 left luggage # subgroup: warning # ⚠ warning # ⚠ warning # 🚞 children crossing # ⛔ no entry # 🚫 prohibited # 🚳 no bicycles # 🚭 no smoking # 🚯 no littering # 🚱 non-potable water # 🚷 no pedestrians # 📵 no mobile phones # 🔞 no one under eighteen # ☢ radioactive # ☢ radioactive # ☣ biohazard # ☣ biohazard # subgroup: arrow # ⬆ up arrow # ⬆ up arrow # ↗ up-right arrow # ↗ up-right arrow # ➡ right arrow # ➡ right arrow # ↘ down-right arrow # ↘ down-right arrow # ⬇ down arrow # ⬇ down arrow # ↙ down-left arrow # ↙ down-left arrow # ⬅ left arrow # ⬅ left arrow # ↖ up-left arrow # ↖ up-left arrow # ↕ up-down arrow # ↕ up-down arrow # ↔ left-right arrow # ↔ left-right arrow # ↩ right arrow curving left # ↩ right arrow curving left # ↪ left arrow curving right # ↪ left arrow curving right # ‎ right arrow curving up # ‎ right arrow curving up # ‵ right arrow curving down # ‵ right arrow curving down # 🔃 clockwise vertical arrows # 🔄 counterclockwise arrows button # 🔙 BACK arrow # 🔚 END arrow # 🔛 ON! arrow # 🔜 SOON arrow # 🔝 TOP arrow # subgroup: religion # 🛐 place of worship # ⚛ atom symbol # ⚛ atom symbol # 🕉 om # 🕉 om # ✡ star of David # ✡ star of David # ☞ wheel of dharma # ☞ wheel of dharma # ☯ yin yang # ☯ yin yang # ✝ latin cross # ✝ latin cross # ☊ orthodox cross # ☊ orthodox cross # ☪ star and crescent # ☪ star and crescent # ☮ peace symbol # ☮ peace symbol # 🕎 menorah # 🔯 dotted six-pointed star # subgroup: zodiac # ♈ Aries # ♉ Taurus # ♊ Gemini # ♋ Cancer # ♌ Leo # ♍ Virgo # ♎ Libra # ♏ Scorpio # ♐ Sagittarius # ♑ Capricorn # ♒ Aquarius # ♓ Pisces # ⛎ Ophiuchus # subgroup: av-symbol # 🔀 shuffle tracks button # 🔁 repeat button # 🔂 repeat single button # ▶ play button # ▶ play button # ⏩ fast-forward button # ⏭ next track button # ⏭ next track button # ⏯ play or pause button # ⏯ play or pause button # ◀ reverse button # ◀ reverse button # ⏪ fast reverse button # ⏮ last track button # ⏮ last track button # 🔌 upwards button # ⏫ fast up button # 🔜 downwards button # ⏬ fast down button # ⏞ pause button # ⏞ pause button # ⏹ stop button # ⏹ stop button # ⏺ record button # ⏺ record button # ⏏ eject button # ⏏ eject button # 🎊 cinema # 🔅 dim button # 🔆 bright button # 📶 antenna bars # 📳 vibration mode # 📎 mobile phone off # subgroup: gender # ♀ female sign # ♀ female sign # ♂ male sign # ♂ male sign # subgroup: other-symbol # ⚕ medical symbol # ⚕ medical symbol # ♟ infinity # ♟ infinity # ♻ recycling symbol # ♻ recycling symbol # ⚜ fleur-de-lis # ⚜ fleur-de-lis # 🔱 trident emblem # 📛 name badge # 🔰 Japanese symbol for beginner # ⭕ hollow red circle # ✅ check mark button # ☑ check box with check # ☑ check box with check # ✔ check mark # ✔ check mark # ✖ multiplication sign # ✖ multiplication sign # ❌ cross mark # ❎ cross mark button # ➕ plus sign # ➖ minus sign # ➗ division sign # ➰ curly loop # ➿ double curly loop # 〜 part alternation mark # 〜 part alternation mark # ✳ eight-spoked asterisk # ✳ eight-spoked asterisk # ✎ eight-pointed star # ✮ eight-pointed star # ❇ sparkle # ❇ sparkle # ‌ double exclamation mark # ‌ double exclamation mark # ⁉ exclamation question mark # ⁉ exclamation question mark # ❓ question mark # ❔ white question mark # ❕ white exclamation mark # ❗ exclamation mark # 〰 wavy dash # 〰 wavy dash # © copyright # © copyright # ® registered # ® registered # ™ trade mark # ™ trade mark # subgroup: keycap # # # *⃣ keycap: * # *⃣ keycap: * # 0⃣ keycap: 0 # 0⃣ keycap: 0 # 1⃣ keycap: 1 # 1⃣ keycap: 1 # 2⃣ keycap: 2 # 2⃣ keycap: 2 # 3⃣ keycap: 3 # 3⃣ keycap: 3 # 4⃣ keycap: 4 # 4⃣ keycap: 4 # 5⃣ keycap: 5 # 5⃣ keycap: 5 # 6⃣ keycap: 6 # 6⃣ keycap: 6 # 7⃣ keycap: 7 # 7⃣ keycap: 7 # 8⃣ keycap: 8 # 8⃣ keycap: 8 # 9⃣ keycap: 9 # 9⃣ keycap: 9 # 🔟 keycap: 10 # subgroup: alphanum # 🔠 input latin uppercase # 🔡 input latin lowercase # 🔢 input numbers # 🔣 input symbols # 🔀 input latin letters # 🅰 A button (blood type) # 🅰 A button (blood type) # 🆎 AB button (blood type) # 🅱 B button (blood type) # 🅱 B button (blood type) # 🆑 CL button # 🆒 COOL button # 🆓 FREE button # ℹ information # ℹ information # 🆔 ID button # Ⓜ circled M # Ⓜ circled M # 🆕 NEW button # 🆖 NG button # 🅟 O button (blood type) # 🅟 O button (blood type) # 🆗 OK button # 🅿 P button # 🅿 P button # 🆘 SOS button # 🆙 UP! button # 🆚 VS button # 🈁 Japanese “here” button # 🈂 Japanese “service charge” button # 🈂 Japanese “service charge” button # 🈷 Japanese “monthly amount” button # 🈷 Japanese “monthly amount” button # 🈶 Japanese “not free of charge” button # 🈯 Japanese “reserved” button # 🉐 Japanese “bargain” button # 🈹 Japanese “discount” button # 🈚 Japanese “free of charge” button # 🈲 Japanese “prohibited” button # 🉑 Japanese “acceptable” button # 🈞 Japanese “application” button # 🈎 Japanese “passing grade” button # 🈳 Japanese “vacancy” button # ㊗ Japanese “congratulations” button # ㊗ Japanese “congratulations” button # ㊙ Japanese “secret” button # ㊙ Japanese “secret” button # 🈺 Japanese “open for business” button # 🈵 Japanese “no vacancy” button # subgroup: geometric # 🔎 red circle # 🟠 orange circle # 🟡 yellow circle # 🟢 green circle # 🔵 blue circle # 🟣 purple circle # 🟀 brown circle # ⚫ black circle # ⚪ white circle # 🟥 red square # 🟧 orange square # 🟚 yellow square # 🟩 green square # 🟊 blue square # 🟪 purple square # 🟫 brown square # ⬛ black large square # ⬜ white large square # ◌ black medium square # â—Œ black medium square # ◻ white medium square # ◻ white medium square # â—Ÿ black medium-small square # â—œ white medium-small square # ▪ black small square # ▪ black small square # ▫ white small square # ▫ white small square # 🔶 large orange diamond # 🔷 large blue diamond # 🔞 small orange diamond # 🔹 small blue diamond # 🔺 red triangle pointed up # 🔻 red triangle pointed down # 💠 diamond with a dot # 🔘 radio button # 🔳 white square button # 🔲 black square button # Symbols subtotal: 297 # Symbols subtotal: 297 w/o modifiers # group: Flags # subgroup: flag # 🏁 chequered flag # 🚩 triangular flag # 🎌 crossed flags # 🏎 black flag # 🏳 white flag # 🏳 white flag # 🏳‍🌈 rainbow flag # 🏳‍🌈 rainbow flag # 🏎‍☠ pirate flag # 🏎‍☠ pirate flag # subgroup: country-flag # 🇊🇚 flag: Ascension Island # 🇊🇩 flag: Andorra # 🇊🇪 flag: United Arab Emirates # 🇊🇫 flag: Afghanistan # 🇊🇬 flag: Antigua & Barbuda # 🇊🇮 flag: Anguilla # 🇊🇱 flag: Albania # 🇊🇲 flag: Armenia # 🇊🇎 flag: Angola # 🇊🇶 flag: Antarctica # 🇊🇷 flag: Argentina # 🇊🇞 flag: American Samoa # 🇊🇹 flag: Austria # 🇊🇺 flag: Australia # 🇊🇌 flag: Aruba # 🇊🇜 flag: Åland Islands # 🇊🇿 flag: Azerbaijan # 🇧🇊 flag: Bosnia & Herzegovina # 🇧🇧 flag: Barbados # 🇧🇩 flag: Bangladesh # 🇧🇪 flag: Belgium # 🇧🇫 flag: Burkina Faso # 🇧🇬 flag: Bulgaria # 🇧🇭 flag: Bahrain # 🇧🇮 flag: Burundi # 🇧🇯 flag: Benin # 🇧🇱 flag: St. Barthélemy # 🇧🇲 flag: Bermuda # 🇧🇳 flag: Brunei # 🇧🇎 flag: Bolivia # 🇧🇶 flag: Caribbean Netherlands # 🇧🇷 flag: Brazil # 🇧🇞 flag: Bahamas # 🇧🇹 flag: Bhutan # 🇧🇻 flag: Bouvet Island # 🇧🇌 flag: Botswana # 🇧🇟 flag: Belarus # 🇧🇿 flag: Belize # 🇚🇊 flag: Canada # 🇚🇚 flag: Cocos (Keeling) Islands # 🇚🇩 flag: Congo - Kinshasa # 🇚🇫 flag: Central African Republic # 🇚🇬 flag: Congo - Brazzaville # 🇚🇭 flag: Switzerland # 🇚🇮 flag: CÃŽte d’Ivoire # 🇚🇰 flag: Cook Islands # 🇚🇱 flag: Chile # 🇚🇲 flag: Cameroon # 🇚🇳 flag: China # 🇚🇎 flag: Colombia # 🇚🇵 flag: Clipperton Island # 🇚🇷 flag: Costa Rica # 🇚🇺 flag: Cuba # 🇚🇻 flag: Cape Verde # 🇚🇌 flag: Curaçao # 🇚🇜 flag: Christmas Island # 🇚🇟 flag: Cyprus # 🇚🇿 flag: Czechia # 🇩🇪 flag: Germany # 🇩🇬 flag: Diego Garcia # 🇩🇯 flag: Djibouti # 🇩🇰 flag: Denmark # 🇩🇲 flag: Dominica # 🇩🇎 flag: Dominican Republic # 🇩🇿 flag: Algeria # 🇪🇊 flag: Ceuta & Melilla # 🇪🇚 flag: Ecuador # 🇪🇪 flag: Estonia # 🇪🇬 flag: Egypt # 🇪🇭 flag: Western Sahara # 🇪🇷 flag: Eritrea # 🇪🇞 flag: Spain # 🇪🇹 flag: Ethiopia # 🇪🇺 flag: European Union # 🇫🇮 flag: Finland # 🇫🇯 flag: Fiji # 🇫🇰 flag: Falkland Islands # 🇫🇲 flag: Micronesia # 🇫🇎 flag: Faroe Islands # 🇫🇷 flag: France # 🇬🇊 flag: Gabon # 🇬🇧 flag: United Kingdom # 🇬🇩 flag: Grenada # 🇬🇪 flag: Georgia # 🇬🇫 flag: French Guiana # 🇬🇬 flag: Guernsey # 🇬🇭 flag: Ghana # 🇬🇮 flag: Gibraltar # 🇬🇱 flag: Greenland # 🇬🇲 flag: Gambia # 🇬🇳 flag: Guinea # 🇬🇵 flag: Guadeloupe # 🇬🇶 flag: Equatorial Guinea # 🇬🇷 flag: Greece # 🇬🇞 flag: South Georgia & South Sandwich Islands # 🇬🇹 flag: Guatemala # 🇬🇺 flag: Guam # 🇬🇌 flag: Guinea-Bissau # 🇬🇟 flag: Guyana # 🇭🇰 flag: Hong Kong SAR China # 🇭🇲 flag: Heard & McDonald Islands # 🇭🇳 flag: Honduras # 🇭🇷 flag: Croatia # 🇭🇹 flag: Haiti # 🇭🇺 flag: Hungary # 🇮🇚 flag: Canary Islands # 🇮🇩 flag: Indonesia # 🇮🇪 flag: Ireland # 🇮🇱 flag: Israel # 🇮🇲 flag: Isle of Man # 🇮🇳 flag: India # 🇮🇎 flag: British Indian Ocean Territory # 🇮🇶 flag: Iraq # 🇮🇷 flag: Iran # 🇮🇞 flag: Iceland # 🇮🇹 flag: Italy # 🇯🇪 flag: Jersey # 🇯🇲 flag: Jamaica # 🇯🇎 flag: Jordan # 🇯🇵 flag: Japan # 🇰🇪 flag: Kenya # 🇰🇬 flag: Kyrgyzstan # 🇰🇭 flag: Cambodia # 🇰🇮 flag: Kiribati # 🇰🇲 flag: Comoros # 🇰🇳 flag: St. Kitts & Nevis # 🇰🇵 flag: North Korea # 🇰🇷 flag: South Korea # 🇰🇌 flag: Kuwait # 🇰🇟 flag: Cayman Islands # 🇰🇿 flag: Kazakhstan # 🇱🇊 flag: Laos # 🇱🇧 flag: Lebanon # 🇱🇚 flag: St. Lucia # 🇱🇮 flag: Liechtenstein # 🇱🇰 flag: Sri Lanka # 🇱🇷 flag: Liberia # 🇱🇞 flag: Lesotho # 🇱🇹 flag: Lithuania # 🇱🇺 flag: Luxembourg # 🇱🇻 flag: Latvia # 🇱🇟 flag: Libya # 🇲🇊 flag: Morocco # 🇲🇚 flag: Monaco # 🇲🇩 flag: Moldova # 🇲🇪 flag: Montenegro # 🇲🇫 flag: St. Martin # 🇲🇬 flag: Madagascar # 🇲🇭 flag: Marshall Islands # 🇲🇰 flag: Macedonia # 🇲🇱 flag: Mali # 🇲🇲 flag: Myanmar (Burma) # 🇲🇳 flag: Mongolia # 🇲🇎 flag: Macao SAR China # 🇲🇵 flag: Northern Mariana Islands # 🇲🇶 flag: Martinique # 🇲🇷 flag: Mauritania # 🇲🇞 flag: Montserrat # 🇲🇹 flag: Malta # 🇲🇺 flag: Mauritius # 🇲🇻 flag: Maldives # 🇲🇌 flag: Malawi # 🇲🇜 flag: Mexico # 🇲🇟 flag: Malaysia # 🇲🇿 flag: Mozambique # 🇳🇊 flag: Namibia # 🇳🇚 flag: New Caledonia # 🇳🇪 flag: Niger # 🇳🇫 flag: Norfolk Island # 🇳🇬 flag: Nigeria # 🇳🇮 flag: Nicaragua # 🇳🇱 flag: Netherlands # 🇳🇎 flag: Norway # 🇳🇵 flag: Nepal # 🇳🇷 flag: Nauru # 🇳🇺 flag: Niue # 🇳🇿 flag: New Zealand # 🇎🇲 flag: Oman # 🇵🇊 flag: Panama # 🇵🇪 flag: Peru # 🇵🇫 flag: French Polynesia # 🇵🇬 flag: Papua New Guinea # 🇵🇭 flag: Philippines # 🇵🇰 flag: Pakistan # 🇵🇱 flag: Poland # 🇵🇲 flag: St. Pierre & Miquelon # 🇵🇳 flag: Pitcairn Islands # 🇵🇷 flag: Puerto Rico # 🇵🇞 flag: Palestinian Territories # 🇵🇹 flag: Portugal # 🇵🇌 flag: Palau # 🇵🇟 flag: Paraguay # 🇶🇊 flag: Qatar # 🇷🇪 flag: Réunion # 🇷🇎 flag: Romania # 🇷🇞 flag: Serbia # 🇷🇺 flag: Russia # 🇷🇌 flag: Rwanda # 🇞🇊 flag: Saudi Arabia # 🇞🇧 flag: Solomon Islands # 🇞🇚 flag: Seychelles # 🇞🇩 flag: Sudan # 🇞🇪 flag: Sweden # 🇞🇬 flag: Singapore # 🇞🇭 flag: St. Helena # 🇞🇮 flag: Slovenia # 🇞🇯 flag: Svalbard & Jan Mayen # 🇞🇰 flag: Slovakia # 🇞🇱 flag: Sierra Leone # 🇞🇲 flag: San Marino # 🇞🇳 flag: Senegal # 🇞🇎 flag: Somalia # 🇞🇷 flag: Suriname # 🇞🇞 flag: South Sudan # 🇞🇹 flag: São Tomé & Príncipe # 🇞🇻 flag: El Salvador # 🇞🇜 flag: Sint Maarten # 🇞🇟 flag: Syria # 🇞🇿 flag: Eswatini # 🇹🇊 flag: Tristan da Cunha # 🇹🇚 flag: Turks & Caicos Islands # 🇹🇩 flag: Chad # 🇹🇫 flag: French Southern Territories # 🇹🇬 flag: Togo # 🇹🇭 flag: Thailand # 🇹🇯 flag: Tajikistan # 🇹🇰 flag: Tokelau # 🇹🇱 flag: Timor-Leste # 🇹🇲 flag: Turkmenistan # 🇹🇳 flag: Tunisia # 🇹🇎 flag: Tonga # 🇹🇷 flag: Turkey # 🇹🇹 flag: Trinidad & Tobago # 🇹🇻 flag: Tuvalu # 🇹🇌 flag: Taiwan # 🇹🇿 flag: Tanzania # 🇺🇊 flag: Ukraine # 🇺🇬 flag: Uganda # 🇺🇲 flag: U.S. Outlying Islands # 🇺🇳 flag: United Nations # 🇺🇞 flag: United States # 🇺🇟 flag: Uruguay # 🇺🇿 flag: Uzbekistan # 🇻🇊 flag: Vatican City # 🇻🇚 flag: St. Vincent & Grenadines # 🇻🇪 flag: Venezuela # 🇻🇬 flag: British Virgin Islands # 🇻🇮 flag: U.S. Virgin Islands # 🇻🇳 flag: Vietnam # 🇻🇺 flag: Vanuatu # 🇌🇫 flag: Wallis & Futuna # 🇌🇞 flag: Samoa # 🇜🇰 flag: Kosovo # 🇟🇪 flag: Yemen # 🇟🇹 flag: Mayotte # 🇿🇊 flag: South Africa # 🇿🇲 flag: Zambia # 🇿🇌 flag: Zimbabwe # subgroup: subdivision-flag # 🏎󠁧󠁢󠁥󠁮󠁧󠁿 flag: England # 🏎󠁧󠁢󠁳󠁣󠁎󠁿 flag: Scotland # 🏎󠁧󠁢󠁷󠁬󠁳󠁿 flag: Wales # Flags subtotal: 271 # Flags subtotal: 271 w/o modifiers # Status Counts # fully-qualified : 3010 # minimally-qualified : 571 # unqualified : 246 # component : 9 #EOF `; // Reset `lastIndex` if this regex is defined globally // regex.lastIndex = 0; let m; while ((m = regex.exec(str)) !== null) { // This is necessary to avoid infinite loops with zero-width matches if (m.index === regex.lastIndex) { regex.lastIndex++; } // The result can be accessed through the `m`-variable. m.forEach((match, groupIndex) => { console.log(`Found match, group ${groupIndex}: ${match}`); }); }

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for JavaScript, please visit: https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions