| Symboolnaam | Dotted Circle |
| Unicode-versie | 1.1 |
| Unicode | U+25CC |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \25CC |
| Hexadecimale code | 0x25CC |
| HTML-code | ◌ |
| LaTeX | \text{DOTTEDCIRCLE} |
| Symbool | ◌ |
| URL-codering (UTF-8 procent) | %E2%97%8C |
| Uitgesproken naam / schermlezer | 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}Je kunt het dotted circle-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Dotted Circle-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |