| Nome del simbolo | Middle Dot |
| Versione Unicode | 1.1 |
| Unicode | U+00B7 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \00B7 |
| Codice esadecimale | 0x00B7 |
| Codice HTML | · |
| LaTeX | \textperiodcentered |
| Simbolo | · |
| Codifica URL (percentuale UTF-8) | %C2%B7 |
| Nome parlato / screen reader | Middle Dot |
| UTF-8 | C2 B7 |
| UTF-16 | 00B7 |
| UTF-32 | 000000B7 |
1\documentclass{article}2\usepackage{pifont}3\textperiodcentered 4\end{document}Puoi digitare il simbolo middle dot sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 183 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "middle dot", or use Unicode Hex Input with 00B7.
Ctrl + Shift + U, type 00b7, 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.middle-dot::before { content: "\00B7"; }1<span>·</span>La rappresentazione del simbolo Middle Dot nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u00B7' or String.fromCodePoint(183) |
| Python | '\N{MIDDLE DOT}' or chr(183) |
| Rust | '\u{00B7}' |
| C / C++ | UTF-8 source or wchar_t with U+00B7 |
| Go | string(rune(0x00B7)) |
| Ruby | "\u{00B7}" |