0o2002
0o2002 is an octal numeral written with the 0o prefix, a convention used by several programming languages to denote numbers in base eight. Languages such as Python (version 3 and later), JavaScript (ES6), and Rust adopt this explicit prefix to distinguish octal literals from decimal and hexadecimal literals.
In decimal terms, 0o2002 equals 1026. This is calculated as 2 × 8^3 + 0 × 8^2 + 0
Usage and notes: 0o2002 can appear in source code as a numeric constant, for example when specifying