Decimal 转 Octal
把 Decimal 值转成 Octal,做 register dump、位掩码、抓包分析、协议调试都用得上,全程在浏览器里完成。
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.