| Nome del simbolo | Dot Operator |
| Versione Unicode | 1.1 |
| Unicode | U+22C5 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \22C5 |
| Codice esadecimale | 0x22C5 |
| Codice HTML | ⋅ |
| LaTeX | \cdot |
| Simbolo | ⋅ |
| Codifica URL (percentuale UTF-8) | %E2%8B%85 |
| Nome parlato / screen reader | Dot Operator |
| UTF-8 | E2 8B 85 |
| UTF-16 | 22C5 |
| UTF-32 | 000022C5 |
1\documentclass{article}2\usepackage{pifont}3\cdot4\end{document}Puoi digitare il simbolo dot operator sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Dot Operator nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |