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