【JavaScript 】Unicode字符值转字符串-String.fromCharCode()
String.fromCharCode
函数用于从Unicode字符值中返回一个字符串。String.fromCharCode
函数属于静态函数,只能通过全局String对象进行调用,不能通过String对象的实例进行调用。
- 浏览器支持情况
- 语法
String.fromCharCode([code1[,code2[,code3]]])
参数
参数 类型 描述 code1 可选/Number类型 要转换为字符串的Unicode字符值1 code2 可选/Number类型 要转换为字符串的Unicode字符值2 codes 可选/Number类型 要转换为字符串的Unicode字符值,可以有多个 - 返回值
String.fromCharCode
方法的返回值为string类型,其返回值为Unicode数值所表示的字符串。如果没有传入任何参数,则返回空字符串“”。 示例
document.writeln( String.fromCharCode( 65, 66, 67, 68, 69, 70, 71 ) ); // ABCDEFG document.writeln( String.fromCharCode( 78 ) ); // N document.writeln( String.fromCharCode( 20013, 22269 ) ); // 中国 document.writeln( String.fromCharCode() ); // (空字符串)