Skip to main content
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.