Uint8Array
Blob
const arr = new Uint8Array([0x68, 0x65, 0x6c, 0x6c, 0x6f]); const blob = new Blob([arr]); console.log(await blob.text()); // => "hello"