0

I encode a string using NSUTF32BigEndianStringEncoding like this:

NSString *utf32BigEndianString = [[NSString alloc] initWithFormat:@"%@", [text dataUsingEncoding:NSUTF32BigEndianStringEncoding]];

For example, this would give me the unicode <00000041> for the string A. So how can I got the string A back from the unicode <00000041>. Thank you very much.

Protocole
  • 1,733
  • 11
  • 28
  • 42

1 Answers1

2

What you have there isn't actually a utf32 big endian string - what you have is a string containing a programmer friendly display of an NSData containing some utf32 big endian data

You can get from an NSData to a NSString using NSString's initWithData:encoding: method.

If you absolutely had to use that string you have there you'd probably need to first turn it back into an NSData.

Frederick Cheung
  • 83,189
  • 8
  • 152
  • 174