Skip to content
Utilizy

UUID Generator

UUID v4, v7 and short IDs in one place

Runs in your browser

Options

Fully random. The most widely used standard.

Result

Result

Nothing generated yet

Set a count and press generate — the results appear here.

Every value comes from your browser’s cryptographic random source.

UUIDs let separate systems create identifiers that will not collide, without asking a central authority. Which version you want depends on where the ID is going — v4 anywhere, v7 into a database index, short IDs into URLs.

How to use

  1. 1 Choose the type — v4, v7 or short.
  2. 2 Set how many you need.
  3. 3 Press generate.
  4. 4 Copy one, or copy the whole list.

Frequently asked questions

What is the difference between v4 and v7?

v4 is entirely random. v7 puts a millisecond timestamp in the leading bits, so IDs sort chronologically. That matters for database primary keys: random keys scatter writes across a B-tree index, while ordered ones append cleanly.

Can two UUIDs ever collide?

In practice, no. A v4 UUID has 122 random bits; you would need to generate billions per second for a century before a collision became likely. It is not a guarantee, but it is a safe assumption.

When should I use a short ID instead?

When the ID goes in a URL, an invite code or anything a person might read out. Twenty-one characters is far friendlier than thirty-six, with collision odds still far below anything you will encounter.

Works well with