# url.decode

## 功能

对当前文本做百分号解码。

## 语法

```bt
url(text).decode()
```

## 参数

无。

## 返回值

| 类型 | 说明 |
| ------ | ------ |
| String | 解码后的文本。 |

## 代码示例

```bt
result = url('BT%20Lang').decode()

// 输出：BT Lang
print result
```

## 注意事项

- 非法 UTF-8 会按有损字符串返回。
