| Nome del simbolo | Undo Symbol |
| Versione Unicode | 3.0 |
| Unicode | U+238C |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \238C |
| Codice esadecimale | 0x238C |
| Codice HTML | ⎌ |
| LaTeX | \text{UNDOSYMBOL} |
| Simbolo | ⎌ |
| Codifica URL (percentuale UTF-8) | %E2%8E%8C |
| Nome parlato / screen reader | Undo Symbol |
| UTF-8 | E2 8E 8C |
| UTF-16 | 238C |
| UTF-32 | 0000238C |
1\documentclass{article}2\usepackage{pifont}3\text{UNDOSYMBOL}4\end{document}Puoi digitare il simbolo undo sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9100 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "undo symbol", or use Unicode Hex Input with 238C.
Ctrl + Shift + U, type 238c, 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.undo-symbol::before { content: "\238C"; }1<span>⎌</span>La rappresentazione del simbolo Undo nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u238C' or String.fromCodePoint(9100) |
| Python | '\N{UNDO SYMBOL}' or chr(9100) |
| Rust | '\u{238C}' |
| C / C++ | UTF-8 source or wchar_t with U+238C |
| Go | string(rune(0x238C)) |
| Ruby | "\u{238C}" |