AND Calculator
Compute the bitwise AND of two integers.
Bitwise AND keeps a 1 only where both inputs have a 1 in the same position.
The math behind it
Compare the numbers bit by bit; each output bit is 1 only if both corresponding input bits are 1.
Worked example
12 (1100) AND 10 (1010) = 8 (1000).
FAQ
What is AND used for?
Masking bits — keeping only the bits you care about.