| 記号名 | Two Dot Leader |
| Unicodeバージョン | 1.1 |
| Unicode | U+2025 |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \2025 |
| 16進コード | 0x2025 |
| HTMLコード | ‥ |
| LaTeX | \text{TWODOTLEADER} |
| 記号 | ‥ |
| URLエンコード(UTF-8パーセント) | %E2%80%A5 |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでtwo dot leader記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |