Calculate exclusive OR for binary, decimal, or hex values with fixed-width masking and per-bit inspection.
Last updated: March 2026 | By Workshelve Team
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.
Escape or unescape XML entity text safely.
Encode XML as Base64 or decode Base64 back to XML.