0o11632
0o11632 is an octal numeric literal used in programming languages that adopt the 0o prefix to indicate base-8 notation. The digits in this literal—1, 1, 6, 3, and 2—are all valid octal digits (0 through 7).
In decimal, 0o11632 equals 5018. In hexadecimal, it corresponds to 0x139A. Its binary representation is 1001110011010.
The primary use of 0o11632 is as a literal value in code. Languages such as Python (since
Contextual notes indicate that octal notation has historical ties to Unix file permissions and low-level programming
See also: octal numeral system; Python numeric literals; JavaScript numeric literals; numeral base representations.