| Nom du symbole | Return Symbol |
| Version Unicode | 3.2 |
| Unicode | U+23CE |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \23CE |
| Code hexadécimal | 0x23CE |
| Code HTML | ⏎ |
| LaTeX | \text{RETURNSYMBOL} |
| Symbole | ⏎ |
| Encodage URL (pourcent UTF-8) | %E2%8F%8E |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole return sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Return dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |