0o2105
0o2105 is an octal (base‑8) integer literal used in many programming languages to represent whole numbers in base eight. In the octal system each digit ranges from 0 to 7 and a leading 0o or 0O prefix denotes an octal value. The literal 0o2105 evaluates to the decimal number 1109. Converting 0o2105 into other bases produces 10001010101 in binary and 0x45D in hexadecimal.
Programming languages that support octal literals include C, C++, and Java, where the prefix 0 is sufficient
Octal notation is historically significant in computing because early systems, especially those using 3‑bit nibbles and
Because octal digits are more compact than binary yet directly map to groups of three binary bits,