| Nombre del símbolo | Return Symbol |
| Versión Unicode | 3.2 |
| Unicode | U+23CE |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \23CE |
| Código hexadecimal | 0x23CE |
| Código HTML | ⏎ |
| LaTeX | \text{RETURNSYMBOL} |
| Símbolo | ⏎ |
| Codificación URL (porcentaje UTF-8) | %E2%8F%8E |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo return en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Return en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |