Convert integer values between bases (2 to 36) and understand each step.
Base converter
Step-by-step calculation
1) Source base → decimal
Enter a value and start the conversion.
2) Decimal → target base
For target base 10, the decimal value is already the final result.
How the conversion works
- Validate each digit of the input value: it must be valid in the source base.
- Convert to decimal using positional notation (digit × base^position).
- Repeatedly divide the decimal value by the target base and record the remainders.
- Read the remainders in reverse order to get the final value in the target base.
