let string = "\u{00A0}" // no-break space
let transformed = string.stringByApplyingTransform(NSStringTransformToUnicodeName, reverse: false)
Expected result: NO-BREAK SPACE
Actual result: \N{NO_BREAK_SPACE}
Why the extra \N{
and }
? What are they for, and is there any way to remove them, short of regex/scanning/parsing/etc?