| Symboolnaam | Circled X |
| Unicode-versie | 7.0 |
| Unicode | U+2BBE |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \2BBE |
| Hexadecimale code | 0x2BBE |
| HTML-code | ⮾ |
| LaTeX | \text{CIRCLEDX} |
| Symbool | ⮾ |
| URL-codering (UTF-8 procent) | %E2%AE%BE |
| Uitgesproken naam / schermlezer | 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}Je kunt het circled x-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Circled X-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |