Bitwise XNOR calculator
Apply XNOR to two integers and read the result as unsigned decimal, hexadecimal, octal, and 32-bit padded binary. XNOR computes XOR on both 32-bit words and then inverts every bit, producing 1 in every position where the operands match.
Bit-level equality
XNOR is a direct equality test per bit. If operand A and operand B are identical, every bit in the result is 1 and the unsigned decimal output is 4294967295 (0xFFFFFFFF). If they differ in every bit, the result is 0. Partial matches produce an intermediate pattern where only the matching positions are 1.
Fixed 32-bit word
The inversion step makes the word size critical. This page fixes the word at 32 bits, so all results reflect a 32-bit unsigned NOT applied after XOR. Input accepts decimal, hexadecimal (0xFF), binary (0b10110010), and octal (0o377) automatically. For a different word size, use the full Bitwise Calculator.