| Symbol Name | Four Dot Punctuation |
| Unicode Version | 4.1 |
| Unicode | U+2058 |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \2058 |
| Hex Code | 0x2058 |
| HTML Code | ⁘ |
| LaTeX | \text{FOURDOTPUNCTUATION} |
| Symbol | ⁘ |
| URL encode (UTF-8 percent) | %E2%81%98 |
| Spoken / screen reader name | Four Dot Punctuation |
| UTF-8 | E2 81 98 |
| UTF-16 | 2058 |
| UTF-32 | 00002058 |
1\documentclass{article}2\usepackage{pifont}3\text{FOURDOTPUNCTUATION}4\end{document}You can type the four dot punctuation symbol on most modern devices with the help of following methods:
Alt + 8280 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "four dot punctuation", or use Unicode Hex Input with 2058.
Ctrl + Shift + U, type 2058, 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-punctuation::before { content: "\2058"; }1<span>⁘</span>Four Dot Punctuation symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2058' or String.fromCodePoint(8280) |
| Python | '\N{FOUR DOT PUNCTUATION}' or chr(8280) |
| Rust | '\u{2058}' |
| C / C++ | UTF-8 source or wchar_t with U+2058 |
| Go | string(rune(0x2058)) |
| Ruby | "\u{2058}" |