Generate unique UUIDs
UUID Generator creates version 4 (random) UUIDs using the Web Crypto API's crypto.getRandomValues() for cryptographically strong randomness, entirely in your browser — nothing is uploaded to a server. It only generates version 4 UUIDs; there's no support for version 1 (timestamp-based), 3, or 5 (namespace-based) formats, and no format options like uppercase or no-hyphen output.
What is a UUID?
A 128-bit identifier designed to be unique across systems without central coordination — commonly used for database keys, request IDs, and API resource identifiers.
Is the UUID Generator free to use?
Yes, completely free with no registration required.
What UUID version does this generate?
Only version 4 (random) UUIDs — versions 1, 3, and 5 aren't supported.
Are these UUIDs safe to use as unguessable tokens?
Yes — they're generated with the Web Crypto API's cryptographically secure random number generator, not Math.random(), so they aren't predictable.