Batch

Generate 5 UUIDs

Five identifiers is the 'a handful' batch — enough for a small fixture or a few rows, small enough to eyeball.

5 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 5 — 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: 5 }, () => crypto.randomUUID());
Python
import uuid
ids = [str(uuid.uuid4()) for _ in range(5)]

Frequently Asked Questions

Are the 5 values guaranteed different?
Yes in practice — the chance two v4 UUIDs in a batch of five collide is about 1 in 10³⁶.
Can I mix versions in one batch?
A batch uses one version. Generate 5, then switch the version and generate 5 more.

Related tools