| Symbol Name | Dot Operator |
| Unicode Version | 1.1 |
| Unicode | U+22C5 |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \22C5 |
| Hex Code | 0x22C5 |
| HTML Code | ⋅ |
| LaTeX | \cdot |
| Symbol | ⋅ |
| URL encode (UTF-8 percent) | %E2%8B%85 |
| Spoken / screen reader name | Dot Operator |
| UTF-8 | E2 8B 85 |
| UTF-16 | 22C5 |
| UTF-32 | 000022C5 |
1\documentclass{article}2\usepackage{pifont}3\cdot4\end{document}You can type the dot operator symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |