| Nom du symbole | Downwards Arrow To Bar |
| Version Unicode | 3.2 |
| Unicode | U+2913 |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \2913 |
| Code hexadécimal | 0x2913 |
| Code HTML | ⤓ |
| LaTeX | \text{DOWNWARDSARROWTOBAR} |
| Symbole | ⤓ |
| Encodage URL (pourcent UTF-8) | %E2%A4%93 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole downwards arrow to bar sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Downwards Arrow To Bar dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |