Octal → Decimal 변환
Octal 값을 Decimal로 변환합니다. 레지스터 덤프, 비트마스크, 패킷 분석, 프로토콜 디버깅에 적합하며 처리는 브라우저 안에서 끝납니다.
Octal digits 0–7.
Decimal integer.
Convert octal numbers to decimal. The classic use is decoding Unix file permission masks like 755 or 644 into the decimal byte value stored on disk.
Why does 755 become 493?
7×64 + 5×8 + 5 = 493 — that is the decimal interpretation of base-8 digits.
Are leading zeros stripped?
Leading zeros are accepted and treated as octal digits, not as decimal padding.