0o10644
0o10644 is an octal numeral written with the 0o prefix, a convention used in several programming languages (notably Python 3) to indicate that the following digits are in base 8. In octal, each digit represents a power of eight, using digits from 0 to 7.
Interpreted as an octal value, 0o10644 equals 1 × 8^4 + 0 × 8^3 + 6 × 8^2 +
Usage and context: The 0o prefix is used to distinguish octal literals from decimal and hexadecimal values
See also: Octal numeral system, base conversions, Python 0o literals, file permission notation in octal.