Numbers Converter
Convert numbers between different bases (Binary, Octal, Decimal, Hexadecimal, etc.)
From
Invalid character for selected base.
To
Quick Examples
Understanding Number Systems
A number system is a writing system for expressing numbers; that is, a mathematical notation for representing numbers of a given set, using digits or other symbols in a consistent manner. The base of a number system determines the number of unique digits used to represent numbers.
System Name | Base | Digits Used | Example (Value in Decimal) |
---|---|---|---|
Binary | 2 | 0, 1 | 10112 (= 1110) |
Octal | 8 | 0, 1, 2, 3, 4, 5, 6, 7 | 278 (= 2310) |
Decimal | 10 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 | 12310 |
Hexadecimal | 16 | 0-9, A (10), B (11), C (12), D (13), E (14), F (15) | A516 (= 16510) |
Base 36 | 36 | 0-9, A-Z | 1Z36 (= 7110) |