Skip to content Skip to sidebar Skip to footer

How To Display An Emoji In A Facebook Messenger Bot?

I'm trying to display an emoji in a Facebook Messenger bot made in NodeJS but I cannot figure out how to turn chars like http://apps.timwhitlock.info/unicode/inspect/hex/1F382 into

Solution 1:

Some of the emojis are not supported. You will get snowflakes if you try this

decodeURI('\u2744')

whereas,

decodeURI('\uF382')

is not working.

Thanks Sriram

Post a Comment for "How To Display An Emoji In A Facebook Messenger Bot?"