Calculate exclusive OR for binary, decimal, or hex values with fixed-width masking and per-bit inspection.
Exclusive OR
A decimal: 170 B decimal: 85 XOR decimal: 255 XOR binary: 1111 1111 XOR hex: 0xFF
XOR returns 1 when the two input bits are different and 0 when they match.
The selected width limits the result to the low 4, 8, 16, 32, or 64 bits.
Use XOR for bit toggles, parity checks, simple masks, checksums, and low-level debugging.
Related Tools
Build and preview Valorant crosshair settings.
Search common Vim commands.
Turn JSON rows into bar, line, or pie charts.
Convert WebP files and Base64 data in both directions.
Convert GIF files into Base64 text or data URLs.
Convert the first GIF frame into a JPG image.