| Nombre del símbolo | Vertical Zigzag Line |
| Versión Unicode | 3.2 |
| Unicode | U+299A |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \299A |
| Código hexadecimal | 0x299A |
| Código HTML | ⦚ |
| LaTeX | \text{VERTICALZIGZAGLINE} |
| Símbolo | ⦚ |
| Codificación URL (porcentaje UTF-8) | %E2%A6%9A |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo vertical zigzag line en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Vertical Zigzag Line en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |