How UUID Generator works
The UUID generator produces version 4 (random) UUIDs using the browser's built-in crypto.randomUUID() function, which draws from the operating system's cryptographically secure random number generator. You can generate version 4 (random) or version 7 (time-ordered) UUIDs, one at a time or in a batch of up to 100, then copy the list or download it as a text file. Because the entropy source is local hardware, nothing you generate ever touches a server.
UUID v4 consists of 122 random bits arranged in the standard 8-4-4-4-12 hex format (for example, 550e8400-e29b-41d4-a716-446655440000). The version nibble is fixed at 4 and the variant bits at 10xx, so every output is a valid RFC 4122 UUID. The browser's CSPRNG is the same source used for TLS key generation, which means collision probability across the full v4 space is negligible for any practical use.