目录

JavaScript String.fromCharCode()

示例

如何将 Unicode 值转换为字符:

let char = String.fromCharCode(65);
亲自试一试 »
let text = String.fromCharCode(72, 69, 76, 76, 79);
亲自试一试 »

描述

这个String.fromCharCode()方法将 Unicode 值转换为字符。

这个String.fromCharCode()是 String 对象的静态方法。

语法始终是String.fromCharCode()

你不能使用myString.fromCharCode()


语法

String.fromCharCode( n1, n2, ..., nX)

参数

Parameters Description
n1, n2, nX Required.
One or more Unicode values to be converted.

返回值

类型 描述
一个字符串 表示 unicode 字符的字符串。


提示

有关所有 Unicode 值的列表,请研究我们的完整的 Unicode 参考


浏览器支持

String.fromCharCode()是 ECMAScript1 (ES1) 功能。

所有浏览器均完全支持 ES1 (JavaScript 1997):

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes