Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an application that receives messages from server. Those messages may contain cyrillic characters. But when I transform received data into NSString I obtain only "\u041c\u0430\u043a" symbols instead of cyrrilic ones.

   NSData *responceData = ....;

   NSString* responceString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];

How may I get correct symbols?

share|improve this question

1 Answer

up vote 9 down vote accepted

There's a much easier solution.

If your data has literal unicode escape sequences in it (that is, \u041c\0430\043a as pure ASCII characters, with no unicode escaping applied), then this is not the UTF-8 encoding of that string. You want NSNonLossyASCIIStringEncoding.

NSData *responseData = ....;

NSString* responseString = [[NSString alloc] initWithData:responseData encoding:NSNonLossyASCIIStringEncoding];

responseString will now be exactly what you expect.

share|improve this answer
+1 Did not know of a built in solution and would obviously prefer that over an homegrown one :), once my answer is unaccepted I will remove it. – Joe Apr 13 '12 at 20:15
Yeah, the name doesn't make it super obvious what it is, so lots of people don't know about it. – BJ Homer Apr 13 '12 at 20:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.