Skip to main content
~/makemydev/uuid-generator

$uuid-generator

Generators

Generate RFC 4122 UUID v4 (random) and v7 (time-ordered) identifiers. Bulk generate up to 1000 at a time.

Version

Fully random — suitable for most use cases. Uses crypto.randomUUID().

About UUID versions

v4 — Random

122 bits of cryptographically random data. Virtually zero collision probability (2122 possible values). The most widely used UUID version.

v7 — Time-ordered

48-bit millisecond timestamp prefix followed by random data. UUIDs sort chronologically, which eliminates B-tree index fragmentation in databases.