Files
2026-08-27 21:09:14 +00:00

18 lines
416 B
Plaintext

---
title: Convert a Blob to a string
sidebarTitle: "Blob to string"
mode: center
---
The [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) class provides several methods for consuming its contents in different formats, including `.text()`.
```ts
const blob = new Blob(["hello world"]);
const str = await blob.text();
// => "hello world"
```
---
See [Binary Data](/runtime/binary-data#conversion).