Binary Tools
Bitwise AND
Perform bitwise AND operation.
Updated 2025-12-01
Bitwise AND
AND two binary values
Compute the bitwise AND of two binary operands.
AND Truth Table
A
B
→
A & B
0
0
=
0
0
1
=
0
1
0
=
0
1
1
=
1
Bitwise AND compares each bit and returns 1 only when both bits are 1. Commonly used for masking, clearing bits, and checking if specific bits are set. All processing happens locally in your browser.