| Nome del simbolo | Return Symbol |
| Versione Unicode | 3.2 |
| Unicode | U+23CE |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \23CE |
| Codice esadecimale | 0x23CE |
| Codice HTML | ⏎ |
| LaTeX | \text{RETURNSYMBOL} |
| Simbolo | ⏎ |
| Codifica URL (percentuale UTF-8) | %E2%8F%8E |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo return sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Return nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |