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