0o16752
0o16752 is an octal literal, a representation of a number in base 8 that uses the prefix 0o to distinguish it from decimal notation. The digits 1, 6, 7, 5, and 2 are all valid in octal (0–7).
In decimal terms, 0o16752 equals 7658. This is computed as 1×8^4 + 6×8^3 + 7×8^2 + 5×8 + 2, which
Languages that support the 0o prefix include Python (since Python 3) and JavaScript (as of ES2020). In
Historically, octal notation has been common in computing for tasks such as specifying Unix file modes and
See also: octal numeral system, 0o prefix in programming languages, base conversion.