Bitwise Calculator

AND / OR / XOR Bit Shift / NOT

Try these examples:

5 << 2 20 >> 2 1010 << 1 0xFF >> 4
Tip: Left shift multiplies by powers of 2 (fast multiplication). Right shift divides by powers of 2 (fast integer division). NOT inverts all bits within the specified bit width.