0

I'm trying to use the twemoji.parse() function to render "3 letter" emojis, like "‍♀️" which would be a female detective with dark skin.

Here is what I tried:

Try one

twemoji.parse("‍♀")

Result: image


Try two

twemoji.parse("♀‍") image

Community
  • 1
  • 1
manniL
  • 7,157
  • 7
  • 46
  • 72

1 Answers1

1

Given that this library does support combined emojis, I think the most likely answer is simply that they don't have support for combining detective + female yet. Did you consider a feature request?

Evert
  • 93,428
  • 18
  • 118
  • 189
  • Well, those emojis were introduced in the Emoji 4.0 spec, while Twemoji supports Emoji 5.0 according [to there README](https://github.com/twitter/twemoji/blob/gh-pages/README.md). I opened an issue about that [here](https://github.com/twitter/twemoji/issues/247) – manniL Sep 01 '17 at 00:53