0o21570
0o21570 is an octal literal, written with the 0o prefix used in several modern programming languages to denote base-8 numbers. The digits 2, 1, 5, 7, and 0 are valid in octal notation, which uses the digits 0 through 7 exclusively.
In decimal form, 0o21570 equals 9080. In hexadecimal, it is represented as 0x2378. These base conversions follow
Usage and context: the 0o prefix is used in languages such as Python 3, JavaScript (ECMAScript 2015
Applications: octal literals are convenient for representing bit fields and permissions, since each octal digit corresponds
See also: octal numeral system, numeric literals, base-8 representation, bitwise operations.