UUID (Universally Unique Identifier) is a 128-bit identifier standard used to uniquely identify information in software systems. It was originally defined by RFC 4122, which has been superseded by RFC 9562.
UUIDs are widely used for database primary keys, distributed system identifiers, API request tracing and log correlation.
The standard string representation of a UUID is:
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
It contains 32 hexadecimal characters and 4 hyphens. Example: 550e8400-e29b-41d4-a716-446655440000.
Choose a UUID version according to your requirements for ordering, determinism, compatibility and randomness.
Comments 0