| 記号名 | Downwards Arrow To Bar |
| Unicodeバージョン | 3.2 |
| Unicode | U+2913 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \2913 |
| 16進コード | 0x2913 |
| HTMLコード | ⤓ |
| LaTeX | \text{DOWNWARDSARROWTOBAR} |
| 記号 | ⤓ |
| URLエンコード(UTF-8パーセント) | %E2%A4%93 |
| 読み上げ名 / スクリーンリーダー | Downwards Arrow To Bar |
| UTF-8 | E2 A4 93 |
| UTF-16 | 2913 |
| UTF-32 | 00002913 |
1\documentclass{article}2\usepackage{pifont}3\text{DOWNWARDSARROWTOBAR}4\end{document}以下の方法でほとんどの最新デバイスでdownwards arrow to bar記号を入力できます:
Alt + 10515 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "downwards arrow to bar", or use Unicode Hex Input with 2913.
Ctrl + Shift + U, type 2913, 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-arrow-to-bar::before { content: "\2913"; }1<span>⤓</span>各プログラミング言語におけるDownwards Arrow To Bar記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2913' or String.fromCodePoint(10515) |
| Python | '\N{DOWNWARDS ARROW TO BAR}' or chr(10515) |
| Rust | '\u{2913}' |
| C / C++ | UTF-8 source or wchar_t with U+2913 |
| Go | string(rune(0x2913)) |
| Ruby | "\u{2913}" |