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