| Nome del simbolo | Downwards Arrow To Bar |
| Versione Unicode | 3.2 |
| Unicode | U+2913 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2913 |
| Codice esadecimale | 0x2913 |
| Codice HTML | ⤓ |
| LaTeX | \text{DOWNWARDSARROWTOBAR} |
| Simbolo | ⤓ |
| Codifica URL (percentuale UTF-8) | %E2%A4%93 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo downwards arrow to bar sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Downwards Arrow To Bar nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |