I want to display an Emoji icon using it's decimal value, for example 
How can I display it in an UILabel ?
Thanks!
I want to display an Emoji icon using it's decimal value, for example 
How can I display it in an UILabel ?
Thanks!
Try this
textLabel.text = @"\ue41e";
Instead of &#x, use \u
. I hope this is the one you want.