类似的东西:
var str = "a";
var code = str.charCodeAt(0);
var str2 = "blah " + charFromCode(code);
alert(str2); // "blah a"
我认为不可能。但是我要问以防万一。
编辑:很奇怪。我确实 google it!
答案 0 :(得分:5)
var str2 = "blah " + String.fromCharCode(code)
答案 1 :(得分:2)
使用String.fromCharCode(code)
其中code是unicode值。