Bitwise Operator Calculator: AND, OR, XOR


Bitwise operators

The most important bit-level operators are:

  1. AND
  2. OR
  3. XOR

Frequently asked questions

  1. 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.

    BitBitANDORXOR
    11110
    10011
    01011
    00000