Primitive data type for 8-bit unsigned integers.
You can use this data type to store integers that are between 0 and 255 in value. That is, you can use
uint8 to store unsigned integers that can be represented in 8 bits. The default value for a
uint8 is 0 (zero).
See also:
int,
uint8,
int16,
int32,
int64,
uint16,
uint,
uint64.