Sortable UUID v7 generator
A UUID v7 leads with a 48-bit Unix millisecond timestamp and fills the rest with cryptographic randomness, as standardised in RFC 9562. The result is a UUID that sorts in creation order — combining the time-ordering of an auto-increment key with the decentralised uniqueness of a UUID.
That ordering makes v7 the modern default for database primary keys: inserts stay roughly sequential, so indexes don’t fragment the way random v4 keys cause them to. This tool generates one ID or a sortable batch, all in your browser, nothing uploaded.