Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 220 Bytes

fromUTF32Array.md

File metadata and controls

9 lines (7 loc) · 220 Bytes

String.fromUTF32Array()

Generates a string based on an array of UTF32 codes.

let arr = [97, 98, 99, 12593, 12596, 12599, 128571];
let str = String.fromUTF32Array(arr);
console.log(str); // "abcㄱㄴㄷ😻"