| Nome del simbolo | Two Dot Leader |
| Versione Unicode | 1.1 |
| Unicode | U+2025 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \2025 |
| Codice esadecimale | 0x2025 |
| Codice HTML | ‥ |
| LaTeX | \text{TWODOTLEADER} |
| Simbolo | ‥ |
| Codifica URL (percentuale UTF-8) | %E2%80%A5 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo two dot leader sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Two Dot Leader nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |