🔢 Binary Calculator - Number System Converter
Perform binary arithmetic, convert between number systems (binary, decimal, hexadecimal, octal), and execute bitwise operations. Perfect for programming, computer science, and digital electronics.
💻 Binary Result
101010
42 in Binary
🔄 Number System Conversions
🔢 Bit Representation
💡 Programming Tips
🔢 Number System Reference
System |
Base |
Digits |
Example |
💻 Binary |
2 |
0, 1 |
1010₂ = 10₁₀ |
🔢 Octal |
8 |
0-7 |
12₈ = 10₁₀ |
🔢 Decimal |
10 |
0-9 |
10₁₀ = 10₁₀ |
🔣 Hexadecimal |
16 |
0-9, A-F |
A₁₆ = 10₁₀ |
⚡ Bitwise Operations
Operation |
Symbol |
Example |
Result |
AND |
& |
1010 & 1100 |
1000 |
OR |
| |
1010 | 1100 |
1110 |
XOR |
^ |
1010 ^ 1100 |
0110 |
NOT |
~ |
~1010 |
0101 |
Left Shift |
<< |
1010 << 1 |
10100 |
Right Shift |
>> |
1010 >> 1 |
0101 |