Generate unique identifiers (UUID)
Fully random UUID - most common
Generate up to 100 at once
UUID (Universally Unique Identifier) is a globally unique 128-bit identifier. Widely used for database primary keys, session IDs, filenames, etc.
xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxxM: version (4 or 7), N: variant (8, 9, a, b)
A UUID (Universally Unique Identifier) Generator is a tool that creates globally unique 128-bit identifiers following the RFC 9562 standard. UUIDs are essential in distributed systems where unique identification is required without a central coordinating authority. They consist of 32 hexadecimal digits displayed in five groups separated by hyphens (e.g., 550e8400-e29b-41d4-a716-446655440000). With an astronomically low probability of collision, UUIDs are the industry standard for generating unique keys across databases, APIs, and microservices.
Select UUID Version
Choose between UUID v4 (fully random, most widely used) or UUID v7 (timestamp-based, sortable and optimized for database indexing).
Configure Options
Set the number of UUIDs to generate (1-100), toggle uppercase output, or remove hyphens for compact format.
Generate UUIDs
Click the Generate button to create your UUIDs instantly. All generation happens in your browser using cryptographically secure random values.
Copy Results
Click the copy button next to any individual UUID, or use Copy All to copy the entire list to your clipboard.