| Symbol Name | Down Arrowhead |
| Unicode Version | 1.1 |
| Unicode | U+2304 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2304 |
| Hex Code | 0x2304 |
| HTML Code | ⌄ |
| LaTeX | \text{DOWNARROWHEAD} |
| Symbol | ⌄ |
| URL encode (UTF-8 percent) | %E2%8C%84 |
| Spoken / screen reader name | 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}You can type the down arrowhead symbol on most modern devices with the help of following methods:
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>Down Arrowhead symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |