--- title: "@std/html" description: "Functions for HTML, such as escaping or unescaping HTML entities" jsr: jsr:@std/html pkg: html version: 1.0.5 generated: true stability: stable --- ## Overview
Functions for HTML tasks such as escaping or unescaping HTML entities.
```js import { unescape } from "@std/html/entities"; import { assertEquals } from "@std/assert"; assertEquals(unescape("<>'&AA"), "<>'&AA"); assertEquals(unescape("þð"), "þð"); ``` ### Add to your project ```sh deno add jsr:@std/html ``` See all symbols in @std/html on