0xA4A
0xA4A is a hexadecimal numeric literal commonly encountered in computer programming and digital data representation. The prefix 0x indicates that the following characters are written in base-16. The digits A, 4, and A correspond to decimal values 10, 4, and 10, respectively; evaluating the hex number yields 10×16² + 4×16 + 10 = 2634. In most languages, the literal 0xA4A is equal to 0xa4a, since hexadecimal notation is case-insensitive.
Usage of 0xA4A appears in source code as a constant in arithmetic, bitwise operations, or as an
Notes and related concepts: Hex values are commonly used to represent binary data, memory addresses, or masks.
See also: Hexadecimal notation, Hex color code, Memory address, Bit masking.