UNPKG

vtils

Version:

一个面向业务的 JavaScript/TypeScript 实用程序库。

14 lines (13 loc) 369 B
"use strict"; exports.__esModule = true; exports.codepointToCharacter = codepointToCharacter; /** * Unicode 码点转为 UTF8 字符。 * * @param codepoint 码点,支持以 `-` 分割多个码点 */ function codepointToCharacter(codepoint) { return codepoint.split('-').map(function (str) { return String.fromCodePoint(parseInt(str, 16)); }).join(''); }