Convertitore Base
Converti basi numeriche.
0b
0o
0x
Tip: Edit any field and all others will update automatically. Supports negative numbers.
tools.base-converter.toolInfo.title - Dettagli tecnici
tools.base-converter.toolInfo.details
Alternativa da riga di comando
# 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)