Bitwise Operator Calculator: AND, OR, XOR
Bitwise operators
The most important bit-level operators are:
- AND
- OR
- XOR
Frequently asked questions
- How you can calculate a bit-level operation?
First, the numbers are converted into binary then every bit from the first numbered is compared with the bit from the same position from the other number. You can use this table to calculate the bit operation.
Bit Bit AND OR XOR 1 1 1 1 0 1 0 0 1 1 0 1 0 1 1 0 0 0 0 0