I have got small issue in my app.
I make NSMutableURLRequest and send body to my webserice.
jsonRequest = @"{\"s\":\"deón\"}";
NSData *requestData = [NSData dataWithBytes:[jsonRequest UTF8String] length:[jsonRequest length]];
I need change "ó" symbol to \u00F3.
Any idea?