Unsigned integers

Types for storing unsigned integers.
8-bit unsigned integer
 byte

 UInt8

 unsigned  char

 ubyte
16-bit unsigned integer
 ushort

 UInt16

 unsigned  short

 word
32-bit unsigned integer
 uint

 UInt32

 unsigned  long

 longword

 unsigned  int

 uinteger
64-bit unsigned integer
 ulong

 UInt64

 qword

 longint

 unsigned  long  long

Example

Other pieces of example codes:
ushort y = 1025 % 8;
ulong y = 10250 div 8;
uint y = 1025 div 8;
byte y = 15 % 4;

You can find it in the following collections: integers | numbers | data types
Unsigned integers in another programming language:
Languages: en hu cz sk