unescape
Problem
You need to decode HTML entities in a string — the inverse of escape.
Solution
Use unescape(value) to convert HTML entities back to their original characters.
ts
import { unescape } from '@vielzeug/arsenal';
unescape('<b>Hello</b>'); // '<b>Hello</b>'
unescape('Alice & Bob'); // 'Alice & Bob'