BinaryCon Binary Converter

Parity Bit Checker

Result

Parity Bit Checker

Check parity bits (even/odd) for a binary string.

Example: 1011, 0

Definition: Checks whether the provided binary string matches the specified parity (0=even,1=odd) and reports any discrepancy.

Conversion formula

Parity check:
Compute XOR of all bits including parity. For even parity the result should be 0.

Example: data+parity 10111 → XOR=1⊕0⊕1⊕1⊕1 = 0 (valid for even parity)