| Symbol Name | Vertical Four Dots |
| Unicode Version | 4.1 |
| Unicode | U+205E |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \205E |
| Hex Code | 0x205E |
| HTML Code | ⁞ |
| LaTeX | \text{VERTICALFOURDOTS} |
| Symbol | ⁞ |
| URL encode (UTF-8 percent) | %E2%81%9E |
| Spoken / screen reader name | 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}You can type the vertical four dots symbol on most modern devices with the help of following methods:
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>Vertical Four Dots symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |