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