JSONToonPro
Number utility tool

Bitwise Calculator

Perform bitwise operations online: AND, OR, XOR, NAND, NOR, XNOR, NOT, left shift, and right shift. Results are displayed in decimal, binary, hexadecimal, and octal simultaneously — all in your browser with no server calls.

100% client sideInstant resultNo data sent

Operation

Value A (decimal)
bin: 00001100 | hex: C
Value B (decimal)
bin: 00001010 | hex: A
Result: 12 & 10 = 8
Decimal8
Binary00001000
Hexadecimal0x8
Octal0o10

Frequently asked questions

5 answers
The calculator supports AND, OR, XOR, NAND, NOR, XNOR, NOT, left shift (<<), and right shift (>>). Results are shown simultaneously in decimal, binary, hexadecimal, and octal, so you can use the output in any number base you need.

More JSON Tools

About Bitwise Operations

Bitwise operations work at the binary level, manipulating individual bits within integers. They are fundamental to systems programming, embedded development, cryptography, graphics, and network protocol implementation. AND is used for masking, OR for setting bits, XOR for toggling and simple encryption, and bit shifts for fast multiplication or division by powers of two. This calculator lets you test bitwise expressions instantly and see results in all four common number bases, making it an essential tool for low-level developers and computer science students.