| Symbol Name | Circled White Bullet |
| Unicode Version | 3.2 |
| Unicode | U+29BE |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \29BE |
| Hex Code | 0x29BE |
| HTML Code | ⦾ |
| LaTeX | \text{CIRCLEDWHITEBULLET} |
| Symbol | ⦾ |
| URL encode (UTF-8 percent) | %E2%A6%BE |
| Spoken / screen reader name | Circled White Bullet |
| UTF-8 | E2 A6 BE |
| UTF-16 | 29BE |
| UTF-32 | 000029BE |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDWHITEBULLET}4\end{document}You can type the circled white bullet symbol on most modern devices with the help of following methods:
Alt + 10686 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled white bullet", or use Unicode Hex Input with 29BE.
Ctrl + Shift + U, type 29be, 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.circled-white-bullet::before { content: "\29BE"; }1<span>⦾</span>Circled White Bullet symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u29BE' or String.fromCodePoint(10686) |
| Python | '\N{CIRCLED WHITE BULLET}' or chr(10686) |
| Rust | '\u{29BE}' |
| C / C++ | UTF-8 source or wchar_t with U+29BE |
| Go | string(rune(0x29BE)) |
| Ruby | "\u{29BE}" |