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