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