बाइनरी कैलकुलेटर
Binary arithmetic और logical operations perform करें। Binary numbers को add, subtract, multiply, divide करें AND, OR, XOR के साथ। Binary, decimal, और hex के बीच convert करें।
= 10 Decimal
= 3 Decimal
Result
1101
Binary
1101
Decimal
13
Hexadecimal
0xD
🔒 तेज़, मुफ्त कैलकुलेटर जो आपके ब्राउज़र में चलते हैं। कोई अपलोड नहीं, 100% निजी।
अंतिम अपडेट: जनवरी 2026
संबंधित कैलकुलेटर
अक्सर पूछे जाने वाले प्रश्न
Binary क्या है और computers इसे क्यों use करते हैं?
Binary एक base-2 number system है जो सिर्फ 0 और 1 use करती है। Computers इसे इसलिए use करते हैं क्योंकि electronic circuits की दो states होती हैं: on (1) और off (0)। सभी digital data—text, images, programs—ultimately binary में stored होता है।
Binary को decimal में कैसे convert करें?
हर binary digit 2 की power represent करता है। दाएं से बाएं: 2⁰=1, 2¹=2, 2²=4, आदि। Binary 1011 = 1×8 + 0×4 + 1×2 + 1×1 = 8 + 0 + 2 + 1 = decimal में 11।
Decimal को binary में कैसे convert करें?
बार-बार 2 से divide करें और remainders note करें। 13 के लिए: 13÷2=6 r1, 6÷2=3 r0, 3÷2=1 r1, 1÷2=0 r1। Remainders नीचे से ऊपर पढ़ें: 1101 decimal 13 का binary है।
AND, OR और XOR operations क्या हैं?
AND: दोनों bits 1 होने चाहिए (1 AND 1 = 1, बाकी 0)। OR: कम से कम एक bit 1 हो (0 OR 0 = 0, बाकी 1)। XOR: exactly एक bit 1 हो (different bits = 1, same = 0)। ये computing में fundamental हैं।
Binary और hexadecimal में क्या संबंध है?
Hexadecimal (base-16) binary का shorthand है। हर hex digit 4 binary digits represent करता है। Binary 1111 = hex F = 15। Binary 10101010 = hex AA। Programmers hex को इसकी compactness के लिए पसंद करते हैं।