Convert numbers between different bases: Binary (Base-2), Decimal (Base-10), and Hexadecimal (Base-16).
A number system is a way of representing numbers. The most common system is the decimal (base-10) system, which uses ten digits (0-9). However, computers and digital electronics use the binary (base-2) system, which only uses two digits (0 and 1). Hexadecimal (base-16) is often used in computing as a more compact way to represent binary numbers.
How to Convert:
The core of number system conversion is understanding place value. In any base, each digit's value is multiplied by the base raised to the power of its position. To convert to a decimal, you sum the values of each digit. From there, you can convert to any other base using a series of divisions.
10112 = (1 × 2³) + (0 × 2²) + (1 × 2¹) + (1 × 2⁰) = 8 + 0 + 2 + 1 = 1110
Disclaimer: This tool is designed for basic integer conversions. For more complex calculations or conversions with fractional parts, specialized software may be required.