How to show Emoji in UILabel iOS
问题 I have to show the textview text smily in UILabel. In the UILabel - lbl.text = @"Happy to help you \U0001F431; its showing properly. In UITextView - I tried to convert UITextView text in string and then log is - %F0%9F%99%88%F0%9F%99%89%F0%9F%99%8A How to encode which i can show in UILabel , anybody please suggest me. 回答1: NSString *str = @"Happy to help you \U0001F431"; NSData *data = [str dataUsingEncoding:NSNonLossyASCIIStringEncoding]; NSString *valueUnicode = [[NSString alloc]