UUID Generator
Generate random UUIDs (version 4 (random) or version 7 (time-ordered)) singly or in bulk, ready to copy. Created in your browser using secure randomness.
How it works
A UUID is a 128-bit identifier written as 32 hexadecimal digits in the familiar 8-4-4-4-12 pattern. Version 4 fills 122 of those bits with cryptographically secure random data, so two UUIDs colliding is astronomically unlikely.
Version 7 (RFC 9562) starts with a 48-bit millisecond timestamp followed by random bits. Because the leading bits increase over time, v7 UUIDs sort in creation order, useful as database keys where v4's randomness hurts index locality.
Nothing is sent anywhere. UUIDs are generated locally in your browser using secure randomness.
What this does
A UUID generator creates random UUIDs — version 4 (random) or version 7 (time-ordered) — singly or in bulk, ready to copy.
How to use it
- Choose v4 or v7.
- Set how many to generate.
- Generate.
- Copy one or all.
How it works
Version 4 is entirely random (122 random bits, so collisions are vanishingly unlikely); version 7 starts with a 48-bit timestamp so IDs sort in creation order — handy as database keys. Generated with secure randomness.
Example
A v4 UUID looks like 3f2504e0-4f89-41d3-9a0c-0305e82c3301.
Sources & methodology
Last updated .
Frequently asked questions
What is the difference between UUID v4 and v7?
Version 4 is entirely random. Version 7 begins with a 48-bit timestamp, so the IDs sort in the order they were created (handy as database keys) while still ending in random bits for uniqueness.
Are these UUIDs unique?
For practical purposes, yes. With 122 random bits the chance of a collision is vanishingly small, and they are generated with your browser’s cryptographically secure random source.
Is anything sent to a server?
No. UUIDs are generated entirely in your browser; nothing is transmitted or stored.
Related tools
Password Generator
Create strong, random passwords with full control over length and character types (uppercase, lowercase, digits and symbols) plus a live strength estimate. Generated entirely in your browser.
Passphrase Generator
Generate memorable, high-entropy passphrases from the EFF diceware wordlist (7,776 words). Choose the number of words, separator and extras, with a live strength estimate. Built in your browser.
Hash Generator
Compute MD5, SHA-1, SHA-256, SHA-384, SHA-512 and CRC32 checksums of any text instantly. All hashing runs in your browser, your input is never uploaded.
QR Code Generator
Generate a QR code from any text, link or Wi-Fi string, choose the error-correction level and colours, and download a crisp SVG or high-resolution PNG. The full QR specification is computed in your browser, nothing is uploaded.