Zahlensystem-Konverter

Konvertiere zwischen binär, oktal, dezimal, hexadezimal und beliebigen Basen von 2 bis 36.

BaseValue
2 (binary)
8 (octal)
10 (decimal)
16 (hex)
32
36

What is this for?

Numbers are the same number regardless of base — 255, 0xff, 0b11111111, and 0o377 are identical. But which base you read or write in matters when you're translating between memory layouts, parsing colour codes, decoding bit fields, or just reading hex from a debugger. This tool converts between binary, octal, decimal, hexadecimal, and any base from 2 to 36, using BigInt under the hood so you don't lose precision on large numbers.

When to use it

Recognised prefixes

Common gotchas