Utilix

Developer tools · Ids

UUID Generator

Generate cryptographically random UUID v4 or time-ordered UUID v7 online. Supports standard, no-hyphen, and uppercase formats. Generate up to 10 UUIDs at once.

Enter values above to see the result.

How it works

Generates cryptographically random UUIDs. Version 4 uses pure randomness. Version 7 encodes a millisecond timestamp in the first 48 bits, making it sortable and database-friendly.

Step by step

  1. 1Select UUID version: v4 for random, v7 for time-ordered.
  2. 2Choose how many UUIDs to generate (1, 5, or 10).
  3. 3Select output format: standard (hyphens), no hyphens, or uppercase.
  4. 4Click Regenerate to produce a new batch.

Examples

Generate 1 UUID v4

Output is a random UUID like 550e8400-e29b-41d4-a716-446655440000.

Inputs

version:
v4
count:
1
format:
standard

Result

Frequently asked questions

What is the difference between UUID v4 and v7?

UUID v4 is completely random (122 random bits). UUID v7 encodes the current timestamp in the first 48 bits, making it monotonically increasing and ideal for use as database primary keys.

Are these UUIDs safe to use in production?

Yes. This generator uses the Web Crypto API (crypto.randomUUID or crypto.getRandomValues), which is cryptographically secure.