Reading a plist utf-8 value as utf-16 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T09:37:27Z http://stackoverflow.com/feeds/question/853262 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/853262/reading-a-plist-utf-8-value-as-utf-16 1 Reading a plist utf-8 value as utf-16 ennuikiller 2009-05-12T15:07:22Z 2009-05-14T00:02:55Z <p>I'm working on an iphone app that needs to display superscripts and subscripts. I'm using a picker to read in data from a plist but the unicode values aren't being displayed corretly in the pickerview. Subscripts and superscripts are not being recognized. I'm assuming this is due to the encoding of the plist as utf-8, so the question is how do a convert a plist string encoding from utf-8 to utf-16 ?</p> <p>Just a little more elaboration:</p> <p>If I do this it displays properly at least in a textfield:</p> <p>NSString *equation = @"x\u00B2 + y\u00B2 = z\u00B2"</p> <p>However if I define the same string in a plist and try to read it in and assign it to a string and display it on a pickerview it just displays the the encoding and not the superscripts.</p> <p>@Matt: thanks for your suggestion the unicode is being escaped that is \u00B2 => \u00B2. Googling for "escaped values in plists" returned no useful results, and I haven't been able to use the keyboard cmd-ctrl-shift-+ to work. Any further suggestions would be greatly appreciated!!</p> http://stackoverflow.com/questions/853262/reading-a-plist-utf-8-value-as-utf-16/855675#855675 0 Answer by Matt Gallagher for Reading a plist utf-8 value as utf-16 Matt Gallagher 2009-05-13T01:33:29Z 2009-05-13T01:33:29Z <p>Plist files automatically embed their own encoding. i.e.:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; </code></pre> <p>This means that whether they are UTF-8, UTF-16 or otherwise, they will be loaded correctly.</p> <p>If you are having issues with loading from a plist, it must be something else. Try using:</p> <pre><code>NSLog(@"%@", [[[NSDictionary alloc] initWithContentsOfFile:@"/path/to/plist"] autorelease]); </code></pre> <p>to output the entire plist as a starting point for finding the problem.</p> <p>If you're curious about the encodings, you can change them by Opening as Text File in Xcode (right-click in the File Tree and select Open As...) then using the View->Text->File Encoding menu to change the file encoding (you'll need to fix the XML encoding to match).</p> http://stackoverflow.com/questions/853262/reading-a-plist-utf-8-value-as-utf-16/859182#859182 0 Answer by ennuikiller for Reading a plist utf-8 value as utf-16 ennuikiller 2009-05-13T17:04:44Z 2009-05-13T17:04:44Z <p>AFter about a day of experimenting I chanced upon using the OS X character palatte. This works well although a bit tedious....I would still like to discover how to embed the codes as text in a plist.</p> http://stackoverflow.com/questions/853262/reading-a-plist-utf-8-value-as-utf-16/861015#861015 1 Answer by Jim Dovey for Reading a plist utf-8 value as utf-16 Jim Dovey 2009-05-14T00:02:55Z 2009-05-14T00:02:55Z <p>The \u variants only work when presented to the C compiler. For UTF-8, if you really want to type character codes rather than simply typing them (the companion to the character palette is the keyboard viewer, which will update as you press modifier keys so you can search for specific characters that way), then you'll have to use XML entities, i.e. <code>&amp;#x00B2;</code>.</p>