| Symbolname | Xor |
| Unicode-Version | 1.1 |
| Unicode | U+22BB |
| Unicode-Block | |
| Allgemeine Kategorie | Math Symbol (Sm) |
| CSS-Code | \22BB |
| Hexadezimalcode | 0x22BB |
| HTML-Code | ⊻ |
| LaTeX | \veebar |
| Symbol | ⊻ |
| URL-Kodierung (UTF-8-Prozent) | %E2%8A%BB |
| Ansagename (Screenreader) | Xor |
| UTF-8 | E2 8A BB |
| UTF-16 | 22BB |
| UTF-32 | 000022BB |
1\documentclass{article}2\usepackage{pifont}3\veebar 4\end{document}Sie können das Symbol xor auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 8891 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "xor", or use Unicode Hex Input with 22BB.
Ctrl + Shift + U, type 22bb, 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 math symbol support.
1span.xor::before { content: "\22BB"; }1<span>⊻</span>Die Darstellung des Symbols Xor in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\u22BB' or String.fromCodePoint(0x22BB) |
| Python | '\N{XOR}' or chr(8891) |
| Rust | '\u{22BB}' |
| C / C++ | UTF-8 source or wchar_t with U+22BB |
| Go | string(rune(0x22BB)) |
| Ruby | "\u22BB" |