Batch

Generate 100 UUIDs

One hundred identifiers is the classic bulk request — a realistic dataset that still fits on a single screen.

100 per clickAny version (v1–v8)Export .txt / .csv

Generated locally with the Web Crypto API — nothing leaves your browser.

About This Batch

How to generate

  1. Pick a version and any formatting (uppercase, hyphens, braces).
  2. Leave how many at 100 — or change it, up to 10,000.
  3. Press Generate, then Copy all or Download.

Use Cases

Code Examples

JavaScript
const ids = Array.from({ length: 100 }, () => crypto.randomUUID());
Python
import uuid
ids = [str(uuid.uuid4()) for _ in range(100)]
PostgreSQL
SELECT gen_random_uuid() FROM generate_series(1, 100);

Frequently Asked Questions

Do I get all 100 in the download?
Yes. The interface previews the first 500 rows; copy and download always use the full batch.
Can I generate 100 v7 UUIDs?
Yes — switch the version selector to v7 first, then generate.

Related tools