← Free tools

UUID and ULID generator

Random identifiers, generated locally.

Runs entirely in your browser. Nothing you paste here is sent to us or to anyone else.

UUID v4 or ULID

UUID v4 is 122 random bits: no order, no meaning, collisions are not a practical concern. ULID packs a 48-bit timestamp in front of the randomness, so identifiers sort chronologically as text. That matters when the identifier ends up as a primary key: random UUIDs scatter writes across a B-tree index, ULIDs append.