Guides Binary Data
Convert a Blob to a string
The Blob class provides several methods for consuming its contents in different formats, including .text().
const blob = new Blob(["hello world"]);
const str = await blob.text();
// => "hello world"See Binary Data.