| Nombre del símbolo | Erase To The Left |
| Versión Unicode | 1.1 |
| Unicode | U+232B |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \232B |
| Código hexadecimal | 0x232B |
| Código HTML | ⌫ |
| LaTeX | \text{ERASETOTHELEFT} |
| Símbolo | ⌫ |
| Codificación URL (porcentaje UTF-8) | %E2%8C%AB |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo erase to the left en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Erase To The Left en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |