| 記号名 | Upwards Quadruple Arrow |
| Unicodeバージョン | 3.2 |
| Unicode | U+27F0 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \27F0 |
| 16進コード | 0x27F0 |
| HTMLコード | ⟰ |
| LaTeX | \text{UPWARDSQUADRUPLEARROW} |
| 記号 | ⟰ |
| URLエンコード(UTF-8パーセント) | %E2%9F%B0 |
| 読み上げ名 / スクリーンリーダー | Upwards Quadruple Arrow |
| UTF-8 | E2 9F B0 |
| UTF-16 | 27F0 |
| UTF-32 | 000027F0 |
1\documentclass{article}2\usepackage{pifont}3\text{UPWARDSQUADRUPLEARROW}4\end{document}以下の方法でほとんどの最新デバイスでupwards quadruple arrow記号を入力できます:
Alt + 10224 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "upwards quadruple arrow", or use Unicode Hex Input with 27F0.
Ctrl + Shift + U, type 27f0, 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.upwards-quadruple-arrow::before { content: "\27F0"; }1<span>⟰</span>各プログラミング言語におけるUpwards Quadruple Arrow記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u27F0' or String.fromCodePoint(10224) |
| Python | '\N{UPWARDS QUADRUPLE ARROW}' or chr(10224) |
| Rust | '\u{27F0}' |
| C / C++ | UTF-8 source or wchar_t with U+27F0 |
| Go | string(rune(0x27F0)) |
| Ruby | "\u{27F0}" |