UUID Generator

Generate unique identifiers for databases, APIs, and applications

UUID v3 Generator

Name-based MD5

Generate 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.

Count: 1Single
VersionDeterministicHash FunctionBest Use Case
v3MD5Legacy name-based
v4RandomRandom IDs
v5SHA-1Name-based (recommended)
javascript
Loading editor...
python
Loading editor...

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.

Deterministic (same input = same output)
Uses MD5 hash (consider v5 instead)
Namespace-based identification
Reproducible across systems
Content-based identifiers
Reproducible IDs for same inputs
Namespace-scoped identification
Legacy system integration

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.