| Nom du symbole | Erase To The Right |
| Version Unicode | 1.1 |
| Unicode | U+2326 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2326 |
| Code hexadécimal | 0x2326 |
| Code HTML | ⌦ |
| LaTeX | \text{ERASETOTHERIGHT} |
| Symbole | ⌦ |
| Encodage URL (pourcent UTF-8) | %E2%8C%A6 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole erase to the right sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Erase To The Right dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |