| Nombre del símbolo | Dotted Circle |
| Versión Unicode | 1.1 |
| Unicode | U+25CC |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \25CC |
| Código hexadecimal | 0x25CC |
| Código HTML | ◌ |
| LaTeX | \text{DOTTEDCIRCLE} |
| Símbolo | ◌ |
| Codificación URL (porcentaje UTF-8) | %E2%97%8C |
| Nombre oral / lector de pantalla | Dotted Circle |
| UTF-8 | E2 97 8C |
| UTF-16 | 25CC |
| UTF-32 | 000025CC |
1\documentclass{article}2\usepackage{pifont}3\text{DOTTEDCIRCLE}4\end{document}Puedes escribir el símbolo dotted circle en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9676 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "dotted circle", or use Unicode Hex Input with 25CC.
Ctrl + Shift + U, type 25cc, 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 geometric symbol support.
1span.dotted-circle::before { content: "\25CC"; }1<span>◌</span>La representación del símbolo Dotted Circle en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u25CC' or String.fromCodePoint(9676) |
| Python | '\N{DOTTED CIRCLE}' or chr(9676) |
| Rust | '\u{25CC}' |
| C / C++ | UTF-8 source or wchar_t with U+25CC |
| Go | string(rune(0x25CC)) |
| Ruby | "\u{25CC}" |