UNPKG

vtils

Version:

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

10 lines 281 B
/** * Unicode 码点转为 UTF8 字符。 * * @param codepoint 码点,支持以 `-` 分割多个码点 */ export function codepointToCharacter(codepoint) { return codepoint.split('-').map(function (str) { return String.fromCodePoint(parseInt(str, 16)); }).join(''); }