| Symbol Name | Downwards Arrow |
| Unicode Version | 1.1 |
| Unicode | U+2193 |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \2193 |
| Hex Code | 0x2193 |
| HTML Code | ↓ |
| LaTeX | \downarrow |
| Symbol | ↓ |
| URL encode (UTF-8 percent) | %E2%86%93 |
| Spoken / screen reader name | Downwards Arrow |
| UTF-8 | E2 86 93 |
| UTF-16 | 2193 |
| UTF-32 | 00002193 |
1\documentclass{article}2\usepackage{pifont}3\downarrow 4\end{document}You can type the downwards arrow symbol on most modern devices with the help of following methods:
Alt + 8595 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "downwards arrow", or use Unicode Hex Input with 2193.
Ctrl + Shift + U, type 2193, 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::before { content: "\2193"; }1<span>↓</span>Downwards Arrow symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2193' or String.fromCodePoint(8595) |
| Python | '\N{DOWNWARDS ARROW}' or chr(8595) |
| Rust | '\u{2193}' |
| C / C++ | UTF-8 source or wchar_t with U+2193 |
| Go | string(rune(0x2193)) |
| Ruby | "\u{2193}" |