↧
Answer by hasan for Unicode not working properly in iOS
NGUYEN MINH answer worked for me as follow:NSString *currencySymbol = @"\\u20AC";NSString *fair = @"1.99 ";NSString *convertedString = currencySymbol;CFStringRef transform =...
View ArticleAnswer by gnasher729 for Unicode not working properly in iOS
You are confusing the output of NSLog with the real data. \u20ac is how NSLog displays a Euro symbol, because the Euro symbol is the Unicode character u20ac.
View ArticleAnswer by NGUYEN MINH for Unicode not working properly in iOS
please try:NSString *convertedString = @"some text"; //Your unicode string hereCFStringRef transform = CFSTR("Any-Hex/Java");CFStringTransform((__bridge CFMutableStringRef)convertedString, NULL,...
View ArticleUnicode not working properly in iOS
My unicode is \u20AC when I set it on UILabel but I'm getting unicode on label. Some time it is printing euro but mostly it is printing unicode on label.My code is over here NSLog(@"Currecy...
View Article