Конвертер Decimal в Octal
Переводите значение Decimal в Octal прямо в браузере — для дампов регистров, битовых масок, инспекции пакетов и отладки протоколов.
Decimal integer. Optional separators are ignored.
Octal output (base 8).
Convert decimal integers to base-8 octal. Octal is still common in Unix file permissions, legacy file format flags, and some assembly output, so a quick converter saves time during scripting and debugging.
Why are octal digits limited to 0–7?
Base-8 only uses digits 0 through 7. The tool rejects any other digit immediately.
Can I prefix octal input with 0o?
Yes. The 0o prefix is stripped before parsing.