0o20757
0o20757 is a numeric literal written in octal notation, using the 0o prefix to denote base-8 in languages such as Python 3. The octal digits are 2, 0, 7, 5, 7. In decimal form, 0o20757 equals 8687, and in hexadecimal it corresponds to 0x21EF. This representation is used when octal values are meaningful in a given context, such as low-level numeric constants or bitwise operations.
In programming, 0o20757 is read as the integer value 8687. The interpretation of that value depends on
Contextual notes include that the 0o prefix is characteristic of octal literals in Python 3, distinguishing
See also: Octal numeral system; Python 3 numeric literals; Hexadecimal notation; Binary notation.