| Symboolnaam | Erase To The Right |
| Unicode-versie | 1.1 |
| Unicode | U+2326 |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \2326 |
| Hexadecimale code | 0x2326 |
| HTML-code | ⌦ |
| LaTeX | \text{ERASETOTHERIGHT} |
| Symbool | ⌦ |
| URL-codering (UTF-8 procent) | %E2%8C%A6 |
| Uitgesproken naam / schermlezer | Erase To The Right |
| UTF-8 | E2 8C A6 |
| UTF-16 | 2326 |
| UTF-32 | 00002326 |
1\documentclass{article}2\usepackage{pifont}3\text{ERASETOTHERIGHT}4\end{document}Je kunt het erase to the right-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 8998 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "erase to the right", or use Unicode Hex Input with 2326.
Ctrl + Shift + U, type 2326, 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-right::before { content: "\2326"; }1<span>⌦</span>De weergave van het Erase To The Right-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u2326' or String.fromCodePoint(8998) |
| Python | '\N{ERASE TO THE RIGHT}' or chr(8998) |
| Rust | '\u{2326}' |
| C / C++ | UTF-8 source or wchar_t with U+2326 |
| Go | string(rune(0x2326)) |
| Ruby | "\u{2326}" |