UUID Generator
UUID v4 & v7 — single or bulk, in your browser.
Pick a version and a count, then click Generate.
Generated in your browser with the built-in crypto API — nothing was sent to a server.
The UUID Generator creates universally unique identifiers entirely in your browser. Choose version 4 — the standard random UUID used almost everywhere — or version 7, the newer time-ordered format from RFC 9562 whose first 48 bits are a Unix-millisecond timestamp, so the IDs sort by creation time and make excellent database primary keys. Generate a single UUID or up to a thousand at once, copy them one at a time or all together, and toggle uppercase or hyphen-free formatting to match your codebase. Every identifier is built with the browser's cryptographically-secure random generator (the Web Crypto API), never Math.random, and nothing is ever uploaded — there is no input to send and no network call in the generation path, so your IDs are created and stay on your device. Each UUID is valid by construction: the version and variant bits are set exactly as the specification requires.
How it works
- Pick a version: v4 for a standard random UUID, or v7 for a time-ordered one.
- Choose how many you need — one, or up to a thousand.
- Click Generate. Optionally toggle uppercase or remove hyphens.
- Copy a single UUID or copy them all. Everything happened in your browser.
FAQ
More Generators tools
Lorem Ipsum Generator
Generate Lorem Ipsum placeholder text — words, paragraphs or HTML.
Password Generator
Strong random passwords with Web Crypto — in your browser.
QR Code Generator
Text, URL or Wi-Fi → QR code (SVG/PNG), in your browser.