0o22541
0o22541 is an octal integer literal, a representation of a nonnegative integer in base 8. The 0o prefix indicates that the following digits should be interpreted as octal rather than decimal or hexadecimal. This notation is supported by several programming languages, most notably Python 3, where 0o22541 would be parsed as a numeric value.
In decimal, 0o22541 equals 9569. This can be verified by converting each octal digit: 2 × 8^4
In hexadecimal, the same value is 0x2561, and in binary it is 0010 0101 0110 0001 (or
Origin and usage: The 0o prefix was introduced in Python 3 to distinguish octal literals from decimal
In summary, 0o22541 is a valid octal representation of the decimal number 9569, equivalently expressed as 0x2561