BinaryCon Binary Converter

Binary AND

Result

Binary AND

Perform bitwise AND on binary inputs.

Example: 1100 1010

Definition: Performs a bitwise AND between two binary strings of equal length and returns the resulting binary string.

Operation

Bitwise AND: output bit = 1 only if both input bits are 1.
Example: 1100 AND 1010 = 1000