Use a browser-based UUID generator that creates version 4 UUIDs on your device using the browser's cryptographically secure random source. Each id has 122 random bits, so collisions are not a practical concern, and because generation is local nothing is logged anywhere.
Free UUID generator. Instantly generate random v4 UUIDs (GUIDs), one or in bulk. Cryptographically random, copy with one click.
Open UUID Generator → Free toolFree UUID v7 generator. Create time-ordered, sortable version-7 UUIDs in bulk. Great for database keys where insertion order and index locality matter. Private.
Open UUID v7 Generator →A version 4 UUID is a 128-bit value where 122 bits are random, formatted as the familiar 8-4-4-4-12 hex string. With that much randomness the chance of two independently generated ids colliding is astronomically small, which is why v4 is the default choice for database keys, request ids and correlation ids. Modern browsers generate them locally with the secure random source built into the platform.
UUID version 7, standardized in RFC 9562, starts with a millisecond timestamp before the random bits. That makes ids sort roughly by creation time, which databases like for index locality. If your ids end up as primary keys in a large table, v7 is worth a look; for everything else, v4 remains the simple default. Both can be generated in the browser.
In theory yes, in practice no. A v4 UUID has 122 random bits, so the collision probability is negligible for any realistic workload.
No. They are generated in your browser with a cryptographically secure random source, and never transmitted.
v4 is fully random; v7 begins with a timestamp so ids sort by creation time, which helps database index performance.