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