I know questions similar to this have been asked, but I haven\'t found a satisfactory answer.
I\'m trying to create a UILabel to display an equation. I don\'t like havin
You can use %C format specifier for unicode.
%C
myLabel.text = [NSString stringWithFormat:@"String with unicode %C", 0x207F];
you can assign a unicode in uilabel as follows -
[yourLabel settext:@"\u207F and \u2099"];