| 記号名 | Dot Operator |
| Unicodeバージョン | 1.1 |
| Unicode | U+22C5 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \22C5 |
| 16進コード | 0x22C5 |
| HTMLコード | ⋅ |
| LaTeX | \cdot |
| 記号 | ⋅ |
| URLエンコード(UTF-8パーセント) | %E2%8B%85 |
| 読み上げ名 / スクリーンリーダー | Dot Operator |
| UTF-8 | E2 8B 85 |
| UTF-16 | 22C5 |
| UTF-32 | 000022C5 |
1\documentclass{article}2\usepackage{pifont}3\cdot4\end{document}以下の方法でほとんどの最新デバイスでdot operator記号を入力できます:
Alt + 8901 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "dot operator", or use Unicode Hex Input.
Ctrl + Shift + U, type 22c5, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended symbol panels.
1span.cdot::before { content: "\22C5"; }1<span>⋅</span>各プログラミング言語におけるDot Operator記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u22C5' or String.fromCodePoint(0x22C5) |
| Python | '\N{DOT OPERATOR}' or chr(8901) |
| Rust | '\u{22C5}' |
| C / C++ | UTF-8 source or wchar_t with U+22C5 |
| Go | string(rune(0x22C5)) |
| Ruby | "\u22C5" |