OR Calculator
Compute the bitwise OR of two integers.
Bitwise OR sets a 1 wherever either input has a 1.
The math behind it
Compare the numbers bit by bit; each output bit is 1 if at least one corresponding input bit is 1.
Worked example
12 (1100) OR 10 (1010) = 14 (1110).
FAQ
What is OR used for?
Setting specific bits to 1 without disturbing the others.