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