In computer programming languages like C and C#, UInt32 is a numeric type that guarantees a 32-bit value. The UInt32 value ranges from 0 to 232 - 1 (4,294,967,295).

Similar data types include UInt8, an 8-bit value (range of 0 to 255), and UInt16, a 16-bit value (range of 0 to 65535).

Data type, Programming terms

  • How to create a computer program.