| Nome del simbolo | Downwards Zigzag Arrow |
| Versione Unicode | 1.1 |
| Unicode | U+21AF |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \21AF |
| Codice esadecimale | 0x21AF |
| Codice HTML | ↯ |
| LaTeX | \text{DOWNWARDSZIGZAGARROW} |
| Simbolo | ↯ |
| Codifica URL (percentuale UTF-8) | %E2%86%AF |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo downwards zigzag arrow sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Downwards Zigzag Arrow nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |