| Symboolnaam | Circled Bullet |
| Unicode-versie | 3.2 |
| Unicode | U+29BF |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \29BF |
| Hexadecimale code | 0x29BF |
| HTML-code | ⦿ |
| LaTeX | \text{CIRCLEDBULLET} |
| Symbool | ⦿ |
| URL-codering (UTF-8 procent) | %E2%A6%BF |
| Uitgesproken naam / schermlezer | Circled Bullet |
| UTF-8 | E2 A6 BF |
| UTF-16 | 29BF |
| UTF-32 | 000029BF |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDBULLET}4\end{document}Je kunt het circled bullet-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 10687 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled bullet", or use Unicode Hex Input with 29BF.
Ctrl + Shift + U, type 29bf, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with list marker support.
1span.circled-bullet::before { content: "\29BF"; }1<span>⦿</span>De weergave van het Circled Bullet-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u29BF' or String.fromCodePoint(10687) |
| Python | '\N{CIRCLED BULLET}' or chr(10687) |
| Rust | '\u{29BF}' |
| C / C++ | UTF-8 source or wchar_t with U+29BF |
| Go | string(rune(0x29BF)) |
| Ruby | "\u{29BF}" |