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