What does the UUID Generator do?
A UUID v4 is a 128-bit identifier with random bits. Use them for database keys, request IDs and client-side entities that must not collide.
Create version 4 UUIDs with the Web Crypto API. Nothing is uploaded.
The UUID Generator produces version 4 UUIDs from crypto.randomUUID() — 122 random bits, about 5.3 × 10³⁶ possible values — on your device, never from a server.
A UUID v4 is a 128-bit identifier with random bits. Use them for database keys, request IDs and client-side entities that must not collide.
Each ID is created with crypto.randomUUID(), which uses a cryptographically strong random source in modern browsers. Nothing is requested from a server.
No. This page never sends your input to a server — formatting, decoding and hashing all run in this tab, on this device.How that works.
Version 4 — random. The variant bits follow RFC 4122.
Collision is vanishingly unlikely for typical app volumes. They are not sequential and should not be treated as secrets.
Yes. Generate 10 copies them as a list you can paste into a seed file.
No. The Web Crypto API runs in this process.
Browse allgeneratorsor thefull tool directory.