| Symboolnaam | Middle Dot |
| Unicode-versie | 1.1 |
| Unicode | U+00B7 |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \00B7 |
| Hexadecimale code | 0x00B7 |
| HTML-code | · |
| LaTeX | \textperiodcentered |
| Symbool | · |
| URL-codering (UTF-8 procent) | %C2%B7 |
| Uitgesproken naam / schermlezer | Middle Dot |
| UTF-8 | C2 B7 |
| UTF-16 | 00B7 |
| UTF-32 | 000000B7 |
1\documentclass{article}2\usepackage{pifont}3\textperiodcentered 4\end{document}Je kunt het middle dot-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Middle Dot-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |