UUID Generator

Generate unique identifiers for databases, APIs, and applications

UUID v5 Generator

Recommended

Generate deterministic UUID v5 identifiers using SHA-1 hash of namespace and name

What is UUID v5?

UUID v5 is a name-based identifier generated using a SHA-1 hash of a namespace and a name. It is the recommended version for generating deterministic (reproducible) UUIDs from static inputs, offering better collision resistance than v3 (MD5).

Count: 1Single

UUID version 5 generates deterministic identifiers using SHA-1 hash of namespace UUID and name string. More secure than v3 with better collision resistance. Same inputs always produce the same UUID.

RFC 4122SHA-1DeterministicName-basedSecure
VersionDeterministicHash FunctionBest Use Case
v3MD5Legacy name-based (upgrade to v5)
v4None (Random)General purpose, high randomness
v5SHA-1Name-based, reproducible identifiers
javascript
Loading editor...
python
Loading editor...

Content-addressed storage
Distributed system coordination
Resource identification by name
Reproducible database keys

UUID Information

RFC 4122 Compliant

All UUIDs generated follow the official RFC 4122 standard.

Cryptographically Secure

UUID v4 uses cryptographically secure random number generation.

No Server Storage

All generation happens in your browser. Nothing is stored on our servers.