Hy volk,
is there any fastest ways to recognize if given char is emoji?
Till this moment i found the following solution:
import emoji
character in emoji.UNICODE_EMOJI
But it seems to be a not the best one, because to check if given char is in the dict, because you need to compute hash function and make lookup. What I mention, maybe it it possible just to check, if emoji Code point is inside of some range of Unicode code points, which are emojis. Any ideas, how to implement it?
Thx u in advance!