I have an NSString
that contains a string with UTF8 characters such as:
"test \u00e8" <- note that having a string containing this is different from having:
NSString *a = @"test \u00e8";
It's instead equal to have a string such as:
NSString *a = @"test \ \ u00e8"; //note the double \\ for escape...
So.. Obviously with [NSString stringWithUTF8String:...]
I can't obtain the desired string that is: "test è".
Is there a way to convert my string and make readable utf8 characters?