| Nombre del símbolo | Vertical Four Dots |
| Versión Unicode | 4.1 |
| Unicode | U+205E |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \205E |
| Código hexadecimal | 0x205E |
| Código HTML | ⁞ |
| LaTeX | \text{VERTICALFOURDOTS} |
| Símbolo | ⁞ |
| Codificación URL (porcentaje UTF-8) | %E2%81%9E |
| Nombre oral / lector de pantalla | Vertical Four Dots |
| UTF-8 | E2 81 9E |
| UTF-16 | 205E |
| UTF-32 | 0000205E |
1\documentclass{article}2\usepackage{pifont}3\text{VERTICALFOURDOTS}4\end{document}Puedes escribir el símbolo vertical four dots en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8286 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "vertical four dots", or use Unicode Hex Input with 205E.
Ctrl + Shift + U, type 205e, 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-four-dots::before { content: "\205E"; }1<span>⁞</span>La representación del símbolo Vertical Four Dots en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u205E' or String.fromCodePoint(8286) |
| Python | '\N{VERTICAL FOUR DOTS}' or chr(8286) |
| Rust | '\u{205E}' |
| C / C++ | UTF-8 source or wchar_t with U+205E |
| Go | string(rune(0x205E)) |
| Ruby | "\u{205E}" |