| Nom du symbole | Vertical Zigzag Line |
| Version Unicode | 3.2 |
| Unicode | U+299A |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \299A |
| Code hexadécimal | 0x299A |
| Code HTML | ⦚ |
| LaTeX | \text{VERTICALZIGZAGLINE} |
| Symbole | ⦚ |
| Encodage URL (pourcent UTF-8) | %E2%A6%9A |
| Nom oral / lecteur d’écran | Vertical Zigzag Line |
| UTF-8 | E2 A6 9A |
| UTF-16 | 299A |
| UTF-32 | 0000299A |
1\documentclass{article}2\usepackage{pifont}3\text{VERTICALZIGZAGLINE}4\end{document}Vous pouvez saisir le symbole vertical zigzag line sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 10650 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "vertical zigzag line", or use Unicode Hex Input with 299A.
Ctrl + Shift + U, type 299a, 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 geometric symbol support.
1span.vertical-zigzag-line::before { content: "\299A"; }1<span>⦚</span>La représentation du symbole Vertical Zigzag Line dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u299A' or String.fromCodePoint(10650) |
| Python | '\N{VERTICAL ZIGZAG LINE}' or chr(10650) |
| Rust | '\u{299A}' |
| C / C++ | UTF-8 source or wchar_t with U+299A |
| Go | string(rune(0x299A)) |
| Ruby | "\u{299A}" |