UUID Generator
Generate unique identifiers for databases, APIs, and applications
UUID v3 Generator
Name-based MD5Generate deterministic UUID v3 identifiers using MD5 hash of namespace and name
What is UUID v3?
UUID v3 is a name-based identifier generated using an MD5 hash of a namespace and a name. It is deterministic: the same inputs always produce the same UUID. It is considered legacy due to MD5's weakness; UUID v5 (SHA-1) is recommended instead.
| Version | Deterministic | Hash Function | Best Use Case |
|---|---|---|---|
| v3 | MD5 | Legacy name-based | |
| v4 | Random | Random IDs | |
| v5 | SHA-1 | Name-based (recommended) |
UUID v3 is a name-based UUID using MD5 hash. Generates deterministic identifiers - same namespace and name always produce the same UUID. Consider v5 (SHA-1) for better security.
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.