बेस कन्वर्टर
नंबर बेस कन्वर्ट करें।
0b
0o
0x
Tip: Edit any field and all others will update automatically. Supports negative numbers.
tools.base-converter.toolInfo.title - तकनीकी विवरण
tools.base-converter.toolInfo.details
कमांड-लाइन विकल्प
# Convert in terminal (using printf)\nprintf '%d\\n' 0xFF # Hex to decimal\nprintf '%x\\n' 255 # Decimal to hex\nprintf '%o\\n' 255 # Decimal to octal\n\n# In Python\nbin(255), oct(255), hex(255)