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