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