On Sun, Jun 27, 2010 at 2:18 PM, Georg Seifert <[email protected]> wrote: > Hi, > > Does anyone has information on how to use Unicode code points higher than > 0xFFFF. > I need to add some supplementary multilingual plane code points to a NSString. > > I can use something like this: > NSString *aString = @"\\u0001ABCD"; //this prints fine but the > [aString length] is 2
That is correct, and expected. The string length is *supposed* to be 2 in that case. -- Clark S. Cox III [email protected] _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
