This calculator performs bitwise operations on two hexadecimal numbers and displays the result in hexadecimal format.
Learn how to use the Hexadecimal Bitwise Operations Calculator calculator and its working principles
Bitwise AND (AND) compares each bit of the first number with the corresponding bit of the second number. If both bits are 1, the resulting bit is 1; otherwise, it is 0.
Bitwise OR (OR) compares each bit of the first number with the corresponding bit of the second number. If at least one of the bits is 1, the resulting bit is 1; otherwise, it is 0.
Bitwise XOR (XOR) compares each bit of the first number with the corresponding bit of the second number. If the bits are different, the resulting bit is 1; otherwise, it is 0.
Bitwise NOT (NOT) inverts each bit of the number. 0 becomes 1, and 1 becomes 0.
Bitwise LEFT SHIFT (LEFT SHIFT) shifts the bits of the number to the left by a specified number of positions. Each shift adds a 0 at the right end.
Bitwise RIGHT SHIFT (RIGHT SHIFT) shifts the bits of the number to the right by a specified number of positions. Each shift moves the leftmost bit to the rightmost position.