在iOS中显示Unicode十六进制编码字符

时间:2014-04-15 15:41:33

标签: ios objective-c unicode

我正在尝试显示像这样编码的欧元符号

€

&#x20AC (that is what I get when I print the NSString variable containing the symbol code)
在ObjectiveC中

。我尝试使用像“%@”和“%C”这样的格式,但它不起作用。如何将其转换为可显示的形式或显示该形式?

1 个答案:

答案 0 :(得分:0)

使用

NSString *yourString = @"\u20AC";

enter image description here