Where UUIDs are used
UUIDs show up as primary keys in distributed databases where multiple systems need to generate IDs independently without coordinating with each other, as request IDs for tracing a call through microservices, and as unique identifiers for files, sessions, or API resources where a predictable sequential integer would leak information about volume or ordering.
Frequently asked questions
What is a UUID?
A 128-bit identifier typically written as 32 hexadecimal digits in five groups, such as 550e8400-e29b-41d4-a716-446655440000, designed so independent generation anywhere is extremely unlikely to collide.
What does the 4 in UUID v4 mean?
It indicates random generation, as opposed to v1 (timestamp + MAC address) or v5 (deterministic hash of a namespace and name).
How random are the UUIDs this tool generates?
This tool uses the browser's crypto.randomUUID() where available, drawing from a cryptographically secure random source — the same class used for generating encryption keys.
ChistStudio