0o11630
0o11630 is a numeric literal that uses the 0o prefix to denote an octal (base-8) value in several programming languages, including Python 3 and modern JavaScript. The digits in the literal are all valid in octal (0 through 7): 1, 1, 6, 3, 0. Interpreted in base 8, its decimal value is calculated as 1×8^4 + 1×8^3 + 6×8^2 + 3×8^1 + 0×8^0 = 4096 + 512 + 384 + 24 + 0 = 5016. Consequently, 0o11630 equals decimal 5016 and hexadecimal 0x1398 (since 5016 = 0x1398).
In contexts where an octal literal is expected, writing 0o11630 ensures the value is interpreted in base
Notes: Some languages prior to certain standards used a leading 0 without the o to denote octal,