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