| Symboolnaam | Four Dot Mark |
| Unicode-versie | 4.1 |
| Unicode | U+205B |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \205B |
| Hexadecimale code | 0x205B |
| HTML-code | ⁛ |
| LaTeX | \text{FOURDOTMARK} |
| Symbool | ⁛ |
| URL-codering (UTF-8 procent) | %E2%81%9B |
| Uitgesproken naam / schermlezer | Four Dot Mark |
| UTF-8 | E2 81 9B |
| UTF-16 | 205B |
| UTF-32 | 0000205B |
1\documentclass{article}2\usepackage{pifont}3\text{FOURDOTMARK}4\end{document}Je kunt het four dot mark-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 8283 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "four dot mark", or use Unicode Hex Input with 205B.
Ctrl + Shift + U, type 205b, 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 punctuation support.
1span.four-dot-mark::before { content: "\205B"; }1<span>⁛</span>De weergave van het Four Dot Mark-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u205B' or String.fromCodePoint(8283) |
| Python | '\N{FOUR DOT MARK}' or chr(8283) |
| Rust | '\u{205B}' |
| C / C++ | UTF-8 source or wchar_t with U+205B |
| Go | string(rune(0x205B)) |
| Ruby | "\u{205B}" |