OOnDevice

UUID Generator

Generate random UUID v4 identifiers — right in your browser. Generate one or many at once with one-click copy.

Works offlineNothing uploaded

How to use it

1

Choose UUID version

Select UUID v4 (random) or other versions as needed.

2

Generate UUIDs

Click generate to create one or more unique identifiers.

3

Copy to clipboard

Click copy to grab your generated UUIDs.

When to use UUID Generator

You're writing a database seed script and need 50 stable primary keys that won't collide with anything already in production — or you're demoing an app and need realistic-looking record IDs for a fake dataset a client will actually click through. Set the count, click generate, and `crypto.randomUUID()` produces the whole batch in your tab: version 4, cryptographically random, with a collision probability so low it's not worth modeling. Copy all of them in one shot and drop them into your migration file, test fixture, or Postman collection. No server is involved — the IDs are generated on your machine and nothing is transmitted between calls. No sign-in, no rate limit, no waiting for a response.

  • Seed 50 primary keys into a local database migration script
  • Populate a Postman collection with realistic record identifiers
  • Generate placeholder IDs for a demo dataset before launch

About this tool

Generate one UUID or a hundred — version 4, cryptographically random, ready to copy. Useful when you're seeding a test database, populating a migration script with stable IDs, creating placeholder record identifiers for a demo, or anywhere you need a unique identifier that won't collide. Each UUID is generated in your browser using the Web Crypto API's `crypto.randomUUID()`, so they're genuinely random and nothing is sent to a server. Generate in bulk, copy all at once, or grab them one by one. No sign-in, no rate limit — just IDs.

Frequently asked

Is this private? Does it work offline?
Yes. UUIDs are generated locally on your computer via the Web Crypto API — no server call, works offline.
What is a UUID v4?
A UUID v4 is a 128-bit universally unique identifier generated using random numbers. It follows the format xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx where y is 8, 9, a, or b.
Are UUIDs truly unique?
While not mathematically guaranteed, the probability of generating two identical UUID v4s is astronomically low — about 1 in 5.3 x 10^36.
Is my data safe?
UUIDs are generated entirely on your computer using crypto.randomUUID(). Nothing is sent to any server.