| Nome del simbolo | Top Half Black Circle |
| Versione Unicode | 7.0 |
| Unicode | U+2BCA |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2BCA |
| Codice esadecimale | 0x2BCA |
| Codice HTML | ⯊ |
| LaTeX | \text{TOPHALFBLACKCIRCLE} |
| Simbolo | ⯊ |
| Codifica URL (percentuale UTF-8) | %E2%AF%8A |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo top half black circle sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Top Half Black Circle nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |