| Nom du symbole | Down Arrowhead |
| Version Unicode | 1.1 |
| Unicode | U+2304 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2304 |
| Code hexadécimal | 0x2304 |
| Code HTML | ⌄ |
| LaTeX | \text{DOWNARROWHEAD} |
| Symbole | ⌄ |
| Encodage URL (pourcent UTF-8) | %E2%8C%84 |
| Nom oral / lecteur d’écran | Down Arrowhead |
| UTF-8 | E2 8C 84 |
| UTF-16 | 2304 |
| UTF-32 | 00002304 |
1\documentclass{article}2\usepackage{pifont}3\text{DOWNARROWHEAD}4\end{document}Vous pouvez saisir le symbole down arrowhead sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8964 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "down arrowhead", or use Unicode Hex Input with 2304.
Ctrl + Shift + U, type 2304, 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.down-arrowhead::before { content: "\2304"; }1<span>⌄</span>La représentation du symbole Down Arrowhead dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2304' or String.fromCodePoint(8964) |
| Python | '\N{DOWN ARROWHEAD}' or chr(8964) |
| Rust | '\u{2304}' |
| C / C++ | UTF-8 source or wchar_t with U+2304 |
| Go | string(rune(0x2304)) |
| Ruby | "\u{2304}" |