Binary Calculator

Add, subtract, multiply, divide, or run bitwise ops on binary numbers.

This free online binary calculator performs arithmetic and bitwise operations on binary numbers of any size, showing the result in binary, decimal, and hexadecimal at once. Built on arbitrary-precision integers, so there's no overflow. No signup required, runs entirely in your browser.

Operation

Quick reference

1010 + 11
→ 1101 (10 + 3 = 13)
1111 - 1
→ 1110 (15 - 1 = 14)
101 × 11
→ 1111 (5 × 3 = 15)
Value A
Value B

Binary

Decimal

Hex

Frequently asked questions

Enter both binary numbers, choose the + operation, and the result appears instantly in binary, decimal, and hex.
Yes. It uses BigInt internally instead of regular numbers, so there's no overflow even on binary numbers hundreds of digits long.
Addition, subtraction, multiplication, integer division with remainder, and bitwise AND, OR, and XOR.
The result is shown as a negative value with a leading minus sign, not two's-complement wraparound — keeping the decimal and hex readouts intuitive.
No. Every calculation runs locally with JavaScript in your browser. Nothing is uploaded or stored on a server.