| Symbol Name | Undo Symbol |
| Unicode Version | 3.0 |
| Unicode | U+238C |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \238C |
| Hex Code | 0x238C |
| HTML Code | ⎌ |
| LaTeX | \text{UNDOSYMBOL} |
| Symbol | ⎌ |
| URL encode (UTF-8 percent) | %E2%8E%8C |
| Spoken / screen reader name | 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}You can type the undo symbol on most modern devices with the help of following methods:
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>Undo symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |