| Symboolnaam | Erase To The Left |
| Unicode-versie | 1.1 |
| Unicode | U+232B |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \232B |
| Hexadecimale code | 0x232B |
| HTML-code | ⌫ |
| LaTeX | \text{ERASETOTHELEFT} |
| Symbool | ⌫ |
| URL-codering (UTF-8 procent) | %E2%8C%AB |
| Uitgesproken naam / schermlezer | Erase To The Left |
| UTF-8 | E2 8C AB |
| UTF-16 | 232B |
| UTF-32 | 0000232B |
1\documentclass{article}2\usepackage{pifont}3\text{ERASETOTHELEFT}4\end{document}Je kunt het erase to the left-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 9003 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "erase to the left", or use Unicode Hex Input with 232B.
Ctrl + Shift + U, type 232b, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with technical symbol support.
1span.erase-to-the-left::before { content: "\232B"; }1<span>⌫</span>De weergave van het Erase To The Left-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u232B' or String.fromCodePoint(9003) |
| Python | '\N{ERASE TO THE LEFT}' or chr(9003) |
| Rust | '\u{232B}' |
| C / C++ | UTF-8 source or wchar_t with U+232B |
| Go | string(rune(0x232B)) |
| Ruby | "\u{232B}" |