问题
I want to display an Emoji icon using it's decimal value, for example 
How can I display it in an UILabel ?
Thanks!
回答1:
Try this
textLabel.text = @"\ue41e";
Instead of &#x, use \u
. I hope this is the one you want.
来源:https://stackoverflow.com/questions/8700292/iphone-emoji-decimal-value-representation