# html.unescape
## Function
Restore common HTML entities.
## Syntax
```bt
html(text).unescape()
```
## Parameters
None.
## Return value
| Type | Description |
| ------ | ------ |
| String | Unescaped text. |
## Code Example
```bt
result = html('<b>BT</b>').unescape()
// Output: BT
print result
```
## Notes
- Currently covers common entities: `<`, `>`, `"`, `'`, `&`.