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