UUID Generator

Generate cryptographically strong UUID v1 / v4 / v7 — single or in bulk.

Version
How many
Format
Action
Output · 10 UUIDs
  • 00188eae5c5-7813-4dd9-9f29-a5335b295099
  • 002286601f5-8d15-4ea6-9af0-b961f28bc3b3
  • 003cc580405-a014-41f6-8df1-838757d7400a
  • 0040377610d-adfd-4099-9e3b-6f2f5c30837d
  • 0055abe1c72-ecaf-421d-a854-7e4a3cf4f9b8
  • 00696574f71-af05-4c7d-a5db-d14c17bb85dc
  • 007ba41a26f-7b42-42ef-b3aa-703e0d504104
  • 00874f2420a-6223-4bf9-99d8-07f41295a187
  • 0099cdb8126-cd8a-4075-ad5d-2e88a1cbd712
  • 0108bebfee5-1e7a-4484-8e2f-d4ae34711493
READY
VERSION · V410 GENERATED

How to use

Choose the UUID version, how many you need (up to 1000), and optionally uppercase or strip hyphens. Click Regenerate for fresh values.

v4 is fully random and the most common. v7 encodes the current timestamp for time-ordered IDs — great as database primary keys. v1 is timestamp + node based.

FAQ

Are these UUIDs cryptographically safe?

Yes. We use the Web Crypto API (crypto.getRandomValues) to generate random bytes.

Which version should I choose?

For new systems, v7 gives lexicographically sortable IDs and better DB locality. v4 is a safe default when order doesn’t matter.

Do generated UUIDs collide?

v4 collisions are astronomically unlikely (2^122 space). v7 combines time and randomness for even better distribution.

Related tools