| Nombre del símbolo | Four Dot Mark |
| Versión Unicode | 4.1 |
| Unicode | U+205B |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \205B |
| Código hexadecimal | 0x205B |
| Código HTML | ⁛ |
| LaTeX | \text{FOURDOTMARK} |
| Símbolo | ⁛ |
| Codificación URL (porcentaje UTF-8) | %E2%81%9B |
| Nombre oral / lector de pantalla | Four Dot Mark |
| UTF-8 | E2 81 9B |
| UTF-16 | 205B |
| UTF-32 | 0000205B |
1\documentclass{article}2\usepackage{pifont}3\text{FOURDOTMARK}4\end{document}Puedes escribir el símbolo four dot mark en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8283 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "four dot mark", or use Unicode Hex Input with 205B.
Ctrl + Shift + U, type 205b, 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.four-dot-mark::before { content: "\205B"; }1<span>⁛</span>La representación del símbolo Four Dot Mark en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u205B' or String.fromCodePoint(8283) |
| Python | '\N{FOUR DOT MARK}' or chr(8283) |
| Rust | '\u{205B}' |
| C / C++ | UTF-8 source or wchar_t with U+205B |
| Go | string(rune(0x205B)) |
| Ruby | "\u{205B}" |