| Nom du symbole | South West Arrow |
| Version Unicode | 1.1 |
| Unicode | U+2199 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2199 |
| Code hexadécimal | 0x2199 |
| Code HTML | ↙ |
| LaTeX | \swarrow |
| Symbole | ↙ |
| Encodage URL (pourcent UTF-8) | %E2%86%99 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole south west arrow sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole South West Arrow dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |