Han Yang

Results 2 comments of Han Yang

I meet with the same problem, and found another emoji [❤️](https://emojipedia.org/red-heart/) missing with the variation selector character (\uFE0F)

directly removing all variation selectors may helps ``` // remove Variation Selectors for Emoji glyph StringBuilder sb = new StringBuilder(); for (char ch : sentenceText.toCharArray()) { Character.UnicodeBlock ub = Character.UnicodeBlock.of(ch);...