| Nombre del símbolo | Curly Loop |
| Versión Unicode | 6.0 |
| Unicode | U+27B0 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \27B0 |
| Código hexadecimal | 0x27B0 |
| Código HTML | ➰ |
| LaTeX | \text{CURLYLOOP} |
| Símbolo | ➰ |
| Codificación URL (porcentaje UTF-8) | %E2%9E%B0 |
| Nombre oral / lector de pantalla | Curly Loop |
| UTF-8 | E2 9E B0 |
| UTF-16 | 27B0 |
| UTF-32 | 000027B0 |
1\documentclass{article}2\usepackage{pifont}3\text{CURLYLOOP}4\end{document}Puedes escribir el símbolo curly loop en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 10160 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "curly loop", or use Unicode Hex Input with 27B0.
Ctrl + Shift + U, type 27b0, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with arrow symbol support.
1span.curly-loop::before { content: "\27B0"; }1<span>➰</span>La representación del símbolo Curly Loop en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u27B0' or String.fromCodePoint(10160) |
| Python | '\N{CURLY LOOP}' or chr(10160) |
| Rust | '\u{27B0}' |
| C / C++ | UTF-8 source or wchar_t with U+27B0 |
| Go | string(rune(0x27B0)) |
| Ruby | "\u{27B0}" |