displaying german characters in iphone
Posted
by Jaimin
on Stack Overflow
See other posts from Stack Overflow
or by Jaimin
Published on 2010-06-15T07:17:09Z
Indexed on
2010/06/15
7:22 UTC
Read the original article
Hit count: 274
iphone
|character-encoding
i have following string coming in the json response. "Gas-Heizung-Sanit\u00e4r" so how to display it. i want to display that \u00e4 as a german character..
NSString *str = "Gas-Heizung-Sanit\u00e4r";
NSLog(@"%c",str);
it only prints the german character.
© Stack Overflow or respective owner