| 記号名 | Curly Loop |
| Unicodeバージョン | 6.0 |
| Unicode | U+27B0 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \27B0 |
| 16進コード | 0x27B0 |
| HTMLコード | ➰ |
| LaTeX | \text{CURLYLOOP} |
| 記号 | ➰ |
| URLエンコード(UTF-8パーセント) | %E2%9E%B0 |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでcurly loop記号を入力できます:
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>各プログラミング言語におけるCurly Loop記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |