| Nom du symbole | Middle Dot |
| Version Unicode | 1.1 |
| Unicode | U+00B7 |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \00B7 |
| Code hexadécimal | 0x00B7 |
| Code HTML | · |
| LaTeX | \textperiodcentered |
| Symbole | · |
| Encodage URL (pourcent UTF-8) | %C2%B7 |
| Nom oral / lecteur d’écran | Middle Dot |
| UTF-8 | C2 B7 |
| UTF-16 | 00B7 |
| UTF-32 | 000000B7 |
1\documentclass{article}2\usepackage{pifont}3\textperiodcentered 4\end{document}Vous pouvez saisir le symbole middle dot sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Middle Dot dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |