Generate up to 100 random UUID v4 values at once for seeding databases, creating test fixtures, or pre-allocating IDs. Each UUID appears on its own line for easy copying or downloading. All generation runs in your browser.
VERSION
COUNT
UUID v4 generation uses the browser's crypto.randomUUID() API, a cryptographically secure random number generator built into every modern browser. No JavaScript library is needed.
UUIDs are generated entirely in your browser. All processing happens locally in your browser tab. Our servers are not involved at any point. You can inspect this yourselfin your browser's DevTools Network tab.
UUID version 4 (random) is defined in RFC 4122 (IETF, 2005). A UUID v4 contains 122 random bits; the remaining 6 bits encode the version (4) and variant (10xx in bits 64–65). This tool uses the browser's crypto.randomUUID() method (W3C Web Cryptography API), which provides cryptographically strong randomness from the operating system's CSPRNG, equivalent to /dev/urandom on Linux or BCryptGenRandom on Windows.
xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxxFor hashing identifiers into fixed-width values, try the hash generator. To produce strong random secrets, use the password generator. For encoding identifiers for transport, see Base64.