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