UUID / GUID Generator & Decoder
Generate version 1 and 4 UUIDs, or decode any UUID/GUID to inspect its version, variant, embedded timestamp, and field structure.
Generated UUIDs
No UUIDs generated yet
Click "Generate UUIDs" to create unique identifiers
Generator Options
Completely random, most commonly used.
Generate 1-1000 UUIDs at once
Format Examples
Standard:
550e8400-e29b-41d4-a716-446655440000
No hyphens:
550e8400e29b41d4a716446655440000
With braces:
{550e8400-e29b-41d4-a716-446655440000}
What is UUID?
UUID (Universally Unique Identifier) or GUID (Globally Unique Identifier) is a 128-bit number used to uniquely identify information. UUIDs are used in databases, distributed systems, and APIs.
UUID Versions
- v1: Time-based with MAC address
- v4: Random (most common)
Common Use Cases
- • Database primary keys
- • Session identifiers
- • File naming
- • API request tracking
- • Distributed system IDs