| Nombre del símbolo | Middle Dot |
| Versión Unicode | 1.1 |
| Unicode | U+00B7 |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \00B7 |
| Código hexadecimal | 0x00B7 |
| Código HTML | · |
| LaTeX | \textperiodcentered |
| Símbolo | · |
| Codificación URL (porcentaje UTF-8) | %C2%B7 |
| Nombre oral / lector de pantalla | Middle Dot |
| UTF-8 | C2 B7 |
| UTF-16 | 00B7 |
| UTF-32 | 000000B7 |
1\documentclass{article}2\usepackage{pifont}3\textperiodcentered 4\end{document}Puedes escribir el símbolo middle dot en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Middle Dot en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |