| Symbol Name | Top Half Black Circle |
| Unicode Version | 7.0 |
| Unicode | U+2BCA |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2BCA |
| Hex Code | 0x2BCA |
| HTML Code | ⯊ |
| LaTeX | \text{TOPHALFBLACKCIRCLE} |
| Symbol | ⯊ |
| URL encode (UTF-8 percent) | %E2%AF%8A |
| Spoken / screen reader name | Top Half Black Circle |
| UTF-8 | E2 AF 8A |
| UTF-16 | 2BCA |
| UTF-32 | 00002BCA |
1\documentclass{article}2\usepackage{pifont}3\text{TOPHALFBLACKCIRCLE}4\end{document}You can type the top half black circle symbol on most modern devices with the help of following methods:
Alt + 11210 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "top half black circle", or use Unicode Hex Input with 2BCA.
Ctrl + Shift + U, type 2bca, 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.top-half-black-circle::before { content: "\2BCA"; }1<span>⯊</span>Top Half Black Circle symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2BCA' or String.fromCodePoint(11210) |
| Python | '\N{TOP HALF BLACK CIRCLE}' or chr(11210) |
| Rust | '\u{2BCA}' |
| C / C++ | UTF-8 source or wchar_t with U+2BCA |
| Go | string(rune(0x2BCA)) |
| Ruby | "\u{2BCA}" |