On this article I will show how to convert from Number base 10 system to other base system.
Convert Number Base 10 (Decimal) to Base 2
- Convert 14 to base 2
14 will equal to 11102
17 will equal to 100012
Convert Number Base 2 to Base 10(Decimal)
- Convert 11102 to Decimal
14 = 8 + 4 + 2 + 0
11102 = 14
Convert Number Base 10 (Decimal) to Base 16(Hex)
- Convert 256 to base 16
256 = 10016
Convert Number Base 2 to Base 10(Decimal)
- 10016 to Decimal
256 = 256 + 0 + 0
10016 = 256
What about other base?
The concept is the same with other base system.
For convert from base n to x, by convert base n to base 10 at first then convert base 10 to x.