FreeDev Tools

Bitwise Calculator

Perform AND, OR, XOR, NOT, left shift, and right shift operations on integers

Bitwise operations are fundamental in systems programming, networking, and cryptography. AND is used for masking bits, OR for setting bits, XOR for toggling bits (and simple encryption), and NOT for inverting all bits. Left shift (<<) multiplies by powers of 2, while right shift (>>) divides. These operations are performed on the 32-bit integer representation of numbers in most programming languages.

Frequently Asked Questions

AND (&), OR (|), XOR (^), NOT (~), left shift (<<), and right shift (>>). Calculations use 32-bit signed integer arithmetic.