Guides Binary Data
Convert a DataView to a string
If a DataView contains ASCII-encoded text, use the TextDecoder class to convert it to a string.
const dv: DataView = ...;
const decoder = new TextDecoder();
const str = decoder.decode(dv);See Binary Data.