डेसिमल से बाइनरी कनवर्टर
डेसिमल संख्याओं को बाइनरी, हेक्साडेसिमल और ऑक्टल में बदलें, सभी बेस एक साथ।
इस टूल का उपयोग कैसे करें
- 1
Type or paste a decimal (base-10) whole number into the input box.
- 2
Read the binary, hexadecimal (shown with a 0x prefix), and octal forms in the table that appears below.
- 3
Change the number to convert a different value, or clear the box to hide the results.
- 4
Copy any line of output you need straight from the table into your code or terminal.
डेसिमल से बाइनरी कनवर्टर क्या है?
हर बेस अलग-अलग संदर्भों में उपयोगी होता है। डेसिमल लोगों के लिए आसान है। बाइनरी मेमोरी में संग्रहित वास्तविक बिट्स दिखाता है। हेक्साडेसिमल बाइट्स का एक संक्षिप्त प्रतिनिधित्व है। ऑक्टल मुख्य रूप से Unix फ़ाइल अनुमतियों के लिए उपयोग होता है। इनके बीच रूपांतरण डेवलपर्स के लिए एक निरंतर कार्य है; यह टूल तीनों एक साथ कर देता है।
सामान्य उपयोग के मामले
Checking the binary pattern of a value while debugging bitmask or flag-based logic in your code.
Translating a decimal color or byte value into hex when writing CSS, HTML, or low-level data.
Working through computer-science homework on number bases and verifying your hand conversions.
Reading an octal Unix file-permission value such as 755 and seeing its binary bits.
Confirming what bits an embedded-systems register value sets before flashing firmware.
Quickly converting a network or protocol constant between decimal, hex, and octal during analysis.
संबंधित टूल
JSON से CSV कनवर्टर
ऑब्जेक्ट्स के एक JSON array को CSV फ़ॉर्मेट में बदलें। API डेटा को स्प्रेडशीट में एक्सपोर्ट करने के लिए बिल्कुल उपयुक्त।
CSV से JSON कन्वर्टर
CSV डेटा को ऑब्जेक्ट्स के JSON ऐरे में बदलें। पहली पंक्ति को हेडर के रूप में माना जाता है।
CSV से SQL INSERT
CSV डेटा से SQL INSERT स्टेटमेंट जेनरेट करें। CSV एक्सपोर्ट को डेटाबेस में इम्पोर्ट करने के लिए उपयोगी।
बाइनरी से हेक्साडेसिमल कन्वर्टर
बाइनरी संख्याओं को हेक्साडेसिमल में बदलें। समान मान के लिए हेक्साडेसिमल बाइनरी से 4 गुना अधिक संक्षिप्त होता है।
हेक्साडेसिमल से बाइनरी कन्वर्टर
हेक्साडेसिमल संख्याओं को बाइनरी में बदलें। प्रत्येक हेक्साडेसिमल अंक ठीक 4 बाइनरी अंकों में विस्तृत होता है।
ASCII से हेक्साडेसिमल कन्वर्टर
टेक्स्ट को ASCII हेक्साडेसिमल कोड में और इसके विपरीत बदलें। प्रत्येक वर्ण उसके 2-अंकीय हेक्साडेसिमल मान में बदल जाता है।