> ## Documentation Index
> Fetch the complete documentation index at: https://bun.ll1025.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 将 Blob 转换为字符串

[`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) 类提供了多种以不同格式消费其内容的方法，包括 `.text()`。

```ts theme={null}
const blob = new Blob(["hello world"]);
const str = await blob.text();
// => "hello world"
```

***

参见 [二进制数据](/runtime/binary-data#conversion)。
