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.