| Symboolnaam | Downwards Arrow To Bar |
| Unicode-versie | 3.2 |
| Unicode | U+2913 |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \2913 |
| Hexadecimale code | 0x2913 |
| HTML-code | ⤓ |
| LaTeX | \text{DOWNWARDSARROWTOBAR} |
| Symbool | ⤓ |
| URL-codering (UTF-8 procent) | %E2%A4%93 |
| Uitgesproken naam / schermlezer | 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}Je kunt het downwards arrow to bar-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Downwards Arrow To Bar-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |