0
我有一些文本文本轉換爲Unicode字符
\u652f\u6301\u3002
我希望它可以顯示相關的Unicode字符
我嘗試使用
[s stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]
解碼,但沒有任何結果
歡迎任何評論
我有一些文本文本轉換爲Unicode字符
\u652f\u6301\u3002
我希望它可以顯示相關的Unicode字符
我嘗試使用
[s stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]
解碼,但沒有任何結果
歡迎任何評論
我不完全確定你正在嘗試做什麼。 但在Ruby中我可以做到以下幾點。
ruby> a = Iconv.iconv("UTF-8", "UTF-16LE","\\u652f\\u6301\\u3002")
=> ["\347\225\234\343\224\266\346\230\262\347\225\234\343\214\266\343\204\260\347\225\234\343\200\263\343\210\260"]
ruby> puts a
畜㔶昲畜㌶畜〳㈰
希望這有助於。
NSString *str [email protected]"\u652f\u6301\u3002";
NSLog(@"%@",str); // Output: 支持。
NSString *str [email protected]"\\u652f\\u6301\\u3002";
NSLog(@"%@",str); // Output: \u652f\u6301\u3002
你想要什麼? 「相關的Unicode字符」是什麼意思? – trojanfoe