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.
Related Tools
Text to HEXEncode text as hexadecimal and decode backTimestamp ConverterConvert Unix epoch timestamps to human dates with timezone supportcURL to CodeConvert cURL commands to JavaScript fetch or Python requestsColor ConverterConvert between HEX, RGB, and HSL color formatsColor Palette GeneratorGenerate complementary and analogous color schemesUnit ConverterConvert length, weight, temperature, area, and volumeBase ConverterConvert between binary, octal, decimal, and hexadecimalRoman NumeralsConvert between Arabic numbers and Roman numerals