HomeCalculators BlogAboutContact PrivacyTerms
Engineering

Free Binary Arithmetic Calculator — ADD, AND, OR, XOR, NOT

Perform binary arithmetic and bitwise operations: addition, subtraction, AND, OR, XOR and NOT. Results shown in binary with decimal equivalent. For CS students and programmers.

✅ Free⚡ Instant🔒 No Data Stored📱 Mobile Ready
🔌Binary Arithmetic — Live Tool

Use the free calculator below. No signup, no download, instant results.

⚡ Open Binary Arithmetic →

All 40 calculator tools available · Free forever

Binary Arithmetic Operations

OperationDescriptionExample
ADDBinary addition with carry1010 + 0110 = 10000
SUBBinary subtraction with borrow1010 − 0110 = 0100
AND1 only when both bits are 11010 AND 0110 = 0010
OR1 when at least one bit is 11010 OR 0110 = 1110
XOR1 when bits are different1010 XOR 0110 = 1100
NOTFlips all bits (bitwise complement)NOT 1010 = …11110101

Bitwise Truth Table

ABANDORXOR
00000
01011
10011
11110

Real-World Uses of Bitwise Operations

  • AND: Masking — extracting specific bits. Setting flags in operating systems. Checking if a number is even: (n AND 1) = 0 if even.
  • OR: Setting specific bits. Combining flags.
  • XOR: Toggling bits. Encryption (simple XOR cipher). Swap two numbers without a temp variable: a=a XOR b; b=a XOR b; a=a XOR b
  • NOT: Creating bitmask complements. Two's complement for negative numbers.

🔌 Perform binary operations — enter binary numbers and select operation

Open Binary Calculator →
binary arithmetic calculatorbinary additionbinary AND OR XORbitwise calculatorbinary NOTbinary operationsbinary math calculatorcomputer science calculator