| Symbolname | Undo Symbol |
| Unicode-Version | 3.0 |
| Unicode | U+238C |
| Unicode-Block | |
| Allgemeine Kategorie | Other Symbol (So) |
| CSS-Code | \238C |
| Hexadezimalcode | 0x238C |
| HTML-Code | ⎌ |
| LaTeX | \text{UNDOSYMBOL} |
| Symbol | ⎌ |
| URL-Kodierung (UTF-8-Prozent) | %E2%8E%8C |
| Ansagename (Screenreader) | 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}Sie können das Symbol undo auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Undo in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |