| Nombre del símbolo | Xor |
| Versión Unicode | 1.1 |
| Unicode | U+22BB |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \22BB |
| Código hexadecimal | 0x22BB |
| Código HTML | ⊻ |
| LaTeX | \veebar |
| Símbolo | ⊻ |
| Codificación URL (porcentaje UTF-8) | %E2%8A%BB |
| Nombre oral / lector de pantalla | Xor |
| UTF-8 | E2 8A BB |
| UTF-16 | 22BB |
| UTF-32 | 000022BB |
1\documentclass{article}2\usepackage{pifont}3\veebar 4\end{document}Puedes escribir el símbolo xor en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Xor en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |