| Symboolnaam | Vertical Four Dots |
| Unicode-versie | 4.1 |
| Unicode | U+205E |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \205E |
| Hexadecimale code | 0x205E |
| HTML-code | ⁞ |
| LaTeX | \text{VERTICALFOURDOTS} |
| Symbool | ⁞ |
| URL-codering (UTF-8 procent) | %E2%81%9E |
| Uitgesproken naam / schermlezer | 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}Je kunt het vertical four dots-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Vertical Four Dots-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |