UUID Generator
Generate cryptographically secure UUIDs (v4 random or v7 time-ordered) in your browser.
UUID Versions
UUID v4 — Random
A fully random 128-bit identifier. It is a great general-purpose choice for database primary keys, session IDs, and correlation IDs.
UUID v7 — Time-ordered
Embeds a millisecond-precision Unix timestamp in the high bits, so UUIDs sort by creation time. Ideal for indexed columns where insertion order matters.