mathiasbynens / emoji-regex

A regular expression to match all Emoji-only symbols as per the Unicode Standard.
https://mths.be/emoji-regex
MIT License
1.73k stars 174 forks source link

does not match ⌫ #62

Closed coulonxyz closed 3 years ago

coulonxyz commented 4 years ago

the regex does not match this special character: https://www.compart.com/en/unicode/U+232B Julien

mathiasbynens commented 3 years ago

⌫ is a text character (not an emoji) per the Unicode Standard, and it renders as such on most platforms, so I've decided not to include it in this library for now.

Generally, the philosophy behind emoji-regex is to avoid making decisions about which characters/sequences are emoji and which aren't, and instead let the Unicode Standard make those decisions.