| Symbol Name | Erase To The Right |
| Unicode Version | 1.1 |
| Unicode | U+2326 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2326 |
| Hex Code | 0x2326 |
| HTML Code | ⌦ |
| LaTeX | \text{ERASETOTHERIGHT} |
| Symbol | ⌦ |
| URL encode (UTF-8 percent) | %E2%8C%A6 |
| Spoken / screen reader name | 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}You can type the erase to the right symbol on most modern devices with the help of following methods:
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>Erase To The Right symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |