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