UUID Generator
Generate unique identifiers for databases, APIs, and applications
UUID v5 Generator
RecommendedGenerate 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).
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.
| Version | Deterministic | Hash Function | Best Use Case |
|---|---|---|---|
| v3 | MD5 | Legacy name-based (upgrade to v5) | |
| v4 | None (Random) | General purpose, high randomness | |
| v5 | SHA-1 | Name-based, reproducible identifiers |
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.