| Nome del simbolo | Circled X |
| Versione Unicode | 7.0 |
| Unicode | U+2BBE |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2BBE |
| Codice esadecimale | 0x2BBE |
| Codice HTML | ⮾ |
| LaTeX | \text{CIRCLEDX} |
| Simbolo | ⮾ |
| Codifica URL (percentuale UTF-8) | %E2%AE%BE |
| Nome parlato / screen reader | Circled X |
| UTF-8 | E2 AE BE |
| UTF-16 | 2BBE |
| UTF-32 | 00002BBE |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDX}4\end{document}Puoi digitare il simbolo circled x sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 11198 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled x", or use Unicode Hex Input with 2BBE.
Ctrl + Shift + U, type 2bbe, 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-x::before { content: "\2BBE"; }1<span>⮾</span>La rappresentazione del simbolo Circled X nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2BBE' or String.fromCodePoint(11198) |
| Python | '\N{CIRCLED X}' or chr(11198) |
| Rust | '\u{2BBE}' |
| C / C++ | UTF-8 source or wchar_t with U+2BBE |
| Go | string(rune(0x2BBE)) |
| Ruby | "\u{2BBE}" |