Bun Convert a Uint8Array to a string

Convert a Uint8Array to a string

jarle Updated

File contents

Convert a Uint8Array to a string

Bun implements the Web-standard TextDecoder class for converting from binary data types like Uint8Array and strings.

const arr = new Uint8Array([104, 101, 108, 108, 111]);
const decoder = new TextDecoder();
const str = decoder.decode(arr);
// => "hello"

See Docs > API > Binary Data for complete documentation on manipulating binary data with Bun.

jarle/bun-skills/tree/main/skills/bun-guides-binary-typedarray-to-string commit 0ee002f3ec

Frequently asked questions

npx skillmds@latest add jarle/bun-convert-a-uint8array-to-a-string