I want to use the Emoji's in my project. but as we all know that unity is not supporting the all emoji's. First I try to make the Sprite asset and with it I can use many emoji but the Emoji's with the complex Unicode like "1f3c3_1f3fb_200d_2642" this Emoji.
I want to use all the Emoji's in unity Using the TextMeshPro. Is there any way to make it happen in unity. Thanks in Advance.
You should prepare your sprite asset first, here is an example that uses the
EmojiIteratorclass to convert long emoji sequences to TMP's sprite tags.The
ConvertToNamemethod is used to convert a string like"\U0001f3c3\U0001f3fb\u200d\u2642"to"1f3c3_1f3fb_200d_2642".