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