当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript String fromCodePoint()用法及代码示例


JavaScript字符串fromCodePoint()是 JavaScript 中的内置方法,用于返回给定代码点值序列(ASCII 值)的字符串或元素。

不同元素的代码点值列表:https://en.wikipedia.org/wiki/List_of_Unicode_characters

用法:

String.fromCodePoint(a1, a2, a3, ....)

参数:这里参数a1、a2等是码点值的序列。

返回值:它返回给定代码点值序列的相应字符串或元素。

以下是 String.fromCodePoint() 方法的示例。

示例 1:此示例展示了 JavaScript 中 String.fromCodePoint() 方法的基本用法。

javascript


let a = String.fromCodePoint(71, 70, 71);
console.log(a);
输出
GFG

示例 2:此示例展示了 JavaScript 中 String.fromCodePoint() 方法的基本用法。

javascript


// Taking some code point values
let a = String.fromCodePoint(42);
let b = String.fromCodePoint(65, 90);
let c = String.fromCodePoint(66, 65, 102);
// Printing the corresponding elements of
// the code point value.
console.log(a);
console.log(b);
console.log(c);
输出
*
AZ
BAf

示例 3:此示例展示了 JavaScript 中 String.fromCodePoint() 方法的基本用法。

javascript


// Taking some code point values
let a = String.fromCodePoint(71, 101, 101, 107, 115);
// Printing the corresponding elements of
// the code point value.
console.log(a);
输出
Geeks

我们有 Javascript 字符串方法的完整列表,要检查这些方法,请浏览此Javascript 字符串完整参考文章。

支持的浏览器:

  • Chrome 41 及以上版本
  • 边 12 及以上
  • 火狐浏览器 29 及以上版本
  • Opera 28 及以上版本
  • Safari 10 及以上版本


相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript String fromCodePoint() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。