| 記号名 | One Dot Leader |
| Unicodeバージョン | 1.1 |
| Unicode | U+2024 |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \2024 |
| 16進コード | 0x2024 |
| HTMLコード | ․ |
| LaTeX | \text{ONEDOTLEADER} |
| 記号 | ․ |
| URLエンコード(UTF-8パーセント) | %E2%80%A4 |
| 読み上げ名 / スクリーンリーダー | One Dot Leader |
| UTF-8 | E2 80 A4 |
| UTF-16 | 2024 |
| UTF-32 | 00002024 |
1\documentclass{article}2\usepackage{pifont}3\text{ONEDOTLEADER}4\end{document}以下の方法でほとんどの最新デバイスでone dot leader記号を入力できます:
Alt + 8228 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "one dot leader", or use Unicode Hex Input with 2024.
Ctrl + Shift + U, type 2024, 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.one-dot-leader::before { content: "\2024"; }1<span>․</span>各プログラミング言語におけるOne Dot Leader記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2024' or String.fromCodePoint(8228) |
| Python | '\N{ONE DOT LEADER}' or chr(8228) |
| Rust | '\u{2024}' |
| C / C++ | UTF-8 source or wchar_t with U+2024 |
| Go | string(rune(0x2024)) |
| Ruby | "\u{2024}" |