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