Tested tool guide
Tested browser tools
Checked August 16, 2026
What Octal Converter does, with a checked example
Octal Converter centers base 8 while showing the same integer in decimal, binary, and hexadecimal. After the source base is identified, it evaluates each digit by that base's place values and gives a step-by-step equivalence rather than treating the characters as an ordinary decimal number. The important constraint is that an octal numeral can contain only digits 0 through 7. A value such as 128 is valid decimal, but it is not valid octal because 8 cannot occupy an octal position.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
Octal: 157; Decimal: 111; Binary: 1101111; Hexadecimal: 6F
With octal selected as the source, 157 equals 1 x 8^2 + 5 x 8^1 + 7 x 8^0, or 64 + 40 + 7 = 111. Binary 1101111 and hexadecimal 6F also represent decimal 111.