| Symbolname | Return Symbol |
| Unicode-Version | 3.2 |
| Unicode | U+23CE |
| Unicode-Block | |
| Allgemeine Kategorie | Other Symbol (So) |
| CSS-Code | \23CE |
| Hexadezimalcode | 0x23CE |
| HTML-Code | ⏎ |
| LaTeX | \text{RETURNSYMBOL} |
| Symbol | ⏎ |
| URL-Kodierung (UTF-8-Prozent) | %E2%8F%8E |
| Ansagename (Screenreader) | Return Symbol |
| UTF-8 | E2 8F 8E |
| UTF-16 | 23CE |
| UTF-32 | 000023CE |
1\documentclass{article}2\usepackage{pifont}3\text{RETURNSYMBOL}4\end{document}Sie können das Symbol return auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 9166 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "return symbol", or use Unicode Hex Input with 23CE.
Ctrl + Shift + U, type 23ce, 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.return-symbol::before { content: "\23CE"; }1<span>⏎</span>Die Darstellung des Symbols Return in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\u23CE' or String.fromCodePoint(9166) |
| Python | '\N{RETURN SYMBOL}' or chr(9166) |
| Rust | '\u{23CE}' |
| C / C++ | UTF-8 source or wchar_t with U+23CE |
| Go | string(rune(0x23CE)) |
| Ruby | "\u{23CE}" |