| Symbolname | Erase To The Left |
| Unicode-Version | 1.1 |
| Unicode | U+232B |
| Unicode-Block | |
| Allgemeine Kategorie | Other Symbol (So) |
| CSS-Code | \232B |
| Hexadezimalcode | 0x232B |
| HTML-Code | ⌫ |
| LaTeX | \text{ERASETOTHELEFT} |
| Symbol | ⌫ |
| URL-Kodierung (UTF-8-Prozent) | %E2%8C%AB |
| Ansagename (Screenreader) | 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}Sie können das Symbol erase to the left auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Erase To The Left in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |