0x01020304
0x01020304 is a hexadecimal numeric literal used in programming to denote a 32-bit value. The sequence of bytes expressed in hex is 01, 02, 03, 04, which corresponds to the value’s most-significant to least-significant bytes in big-endian notation.
Its decimal value is 16,909,060. In binary, the value is 00000001 00000010 00000011 00000100, reflecting the
Endianness and memory layout: In big-endian storage, the four bytes appear in memory as 01 02 03
Typical uses: 0x01020304 is commonly employed as a teaching and debugging aid to illustrate endianness, byte
See also: Hexadecimal notation, Endianness, Byte order, 32-bit integers, Serialization concepts.