Batch

Generate 1 UUID

Sometimes one identifier is all you need. This page generates a single UUID and puts it on your clipboard, with no batch controls in the way.

1 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 1 — or change it, up to 10,000.
  3. Press Generate, then Copy all or Download.

Use Cases

Code Examples

JavaScript
const id = crypto.randomUUID();
Python
import uuid
print(uuid.uuid4())
Shell
uuidgen

Frequently Asked Questions

Can I generate one UUID without JavaScript enabled?
The generator runs locally in your browser, so JavaScript is required. Any of the one-line code samples above does the same job in a terminal or script.
Which version is generated by default?
v4 (random). Switch the version selector for v1, v3, v5, v6, v7, or v8.

Related tools