About UUIDs
UUIDs (Universally Unique Identifiers) are 128-bit identifiers that are guaranteed to be unique across space and time. They are commonly used in distributed systems where unique IDs need to be generated without coordination between nodes.
UUID Format
A standard UUID looks like: 550e8400-e29b-41d4-a716-446655440000
It consists of 32 hexadecimal digits displayed in 5 groups separated by hyphens, in the form 8-4-4-4-12 for a total of 36 characters.
Common Use Cases
- Database primary keys
- Session identifiers
- Distributed system identifiers
- File naming
- API request correlation IDs