| Symbolname | Downwards Zigzag Arrow |
| Unicode-Version | 1.1 |
| Unicode | U+21AF |
| Unicode-Block | |
| Allgemeine Kategorie | Other Symbol (So) |
| CSS-Code | \21AF |
| Hexadezimalcode | 0x21AF |
| HTML-Code | ↯ |
| LaTeX | \text{DOWNWARDSZIGZAGARROW} |
| Symbol | ↯ |
| URL-Kodierung (UTF-8-Prozent) | %E2%86%AF |
| Ansagename (Screenreader) | 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}Sie können das Symbol downwards zigzag arrow auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Downwards Zigzag Arrow in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |