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
- This page is the batch generator preset to 1. A single generated value is the common case for pasting a key into a config file, a database row, or a test fixture.
How to generate
- Pick a version and any formatting (uppercase, hyphens, braces).
- Leave how many at 1 — or change it, up to 10,000.
- Press Generate, then Copy all or Download.
Use Cases
- Pasting one key into a
.envfile or a config value. - Creating one record by hand in a database GUI.
- Grabbing an ID for a support ticket or a bug report.
Code Examples
JavaScript
const id = crypto.randomUUID();Python
import uuid
print(uuid.uuid4())Shell
uuidgenFrequently 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.