是否可以将char代码(数字)转换为JavaScript中的char?

时间:2011-05-19 05:01:15

标签: javascript

类似的东西:

var str = "a";
var code = str.charCodeAt(0);
var str2 = "blah " + charFromCode(code);
alert(str2);    // "blah a"

我认为不可能。但是我要问以防万一。

编辑:很奇怪。我确实 google it!

2 个答案:

答案 0 :(得分:5)

var str2 = "blah " + String.fromCharCode(code)

答案 1 :(得分:2)

使用String.fromCharCode(code)其中code是unicode值。