UUID Generator (v4)
Generate random UUIDs instantly, as many as you need.
Related Tools
Generate random UUIDs instantly, as many as you need.
A UUID (Universally Unique Identifier) is a 128-bit value that any machine can generate independently with effectively zero risk of collision. That property — uniqueness without coordination — is why UUIDs power database keys, distributed systems, file names, and API resources everywhere.
The canonical form is 36 characters: 32 hexadecimal digits in five groups (8-4-4-4-12). In version 4, one digit is fixed to 4 (the version) and another encodes the variant — the remaining 122 bits are pure randomness.
Store UUIDs in native UUID column types where your database supports them (16 bytes instead of 36 characters). Lowercase is the canonical representation per RFC, though comparisons should be case-insensitive.