| Symbolname | Circled X |
| Unicode-Version | 7.0 |
| Unicode | U+2BBE |
| Unicode-Block | |
| Allgemeine Kategorie | Other Symbol (So) |
| CSS-Code | \2BBE |
| Hexadezimalcode | 0x2BBE |
| HTML-Code | ⮾ |
| LaTeX | \text{CIRCLEDX} |
| Symbol | ⮾ |
| URL-Kodierung (UTF-8-Prozent) | %E2%AE%BE |
| Ansagename (Screenreader) | 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}Sie können das Symbol circled x auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Circled X in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |