XOR Calculator
Compute the bitwise exclusive OR of two integers.
Bitwise XOR sets a 1 wherever the two inputs differ.
The math behind it
Each output bit is 1 only when the two input bits are different (one 0 and one 1).
Worked example
12 (1100) XOR 10 (1010) = 6 (0110).
FAQ
Why is XOR special?
Applying the same XOR twice restores the original value — the basis of simple ciphers and checksums.