0o10025
0o10025 is an octal numeral literal. The prefix 0o is used in several programming languages to indicate that the digits that follow are written in base 8, rather than decimal. This form helps distinguish octal values from decimal and hexadecimal representations.
In decimal, 0o10025 equals 4117. It converts to hexadecimal 0x1015 and to binary 1000000010101. These base conversions
In practical use, 0o10025 is recognized as an octal literal in languages that support the 0o prefix,
See also: numeral systems, octal, hexadecimal, binary, Python (programming language).