A universally unique identifier (UUID) version 4 is a 128-bit identifier generated from random numbers. Unlike v1 or v6, it contains no timestamp or MAC address — just 122 bits of randomness. Use them for database primary keys, correlation IDs, or anywhere you need a unique identifier without a central authority.
Because it runs entirely in your browser. The UUIDs come from crypto.randomUUID, the standard Web API for RFC 4122 identifiers. Nothing is logged, uploaded, or transmitted. Generate one UUID or fifty at a time, copy them with a click, and paste them straight into your code or database.
A UUID v4 looks like f47ac10b-58cc-4372-a567-0e02b2c3d479. It’s a 36-character string with five groups separated by hyphens: 8-4-4-4-12 hexadecimal digits. The 13th digit is always “4” (the version), and the 17th digit is one of 8, 9, a, or b (the variant).
What is a UUID v4?
A UUID v4 (version 4) is a 128-bit identifier generated from random numbers, following RFC 4122. Unlike UUID v1 which uses a timestamp and MAC address, a v4 UUID is almost entirely random — 122 of the 128 bits come from a cryptographically-secure random source.
How do I generate a UUID v4?
Select 'UUID v4' as the type, choose how many you need (1 to 50), and click Generate. Each identifier comes from crypto.randomUUID, the built-in browser API, and you can copy individual UUIDs or all of them at once.
Can I generate multiple UUIDs at once?
Yes. Set the 'How many' field to any number between 1 and 50. All UUIDs are generated in a single click and displayed in a list you can copy individually or as a batch.
Are these UUIDs really random?
Yes. They come from crypto.randomUUID which uses the browser's cryptographically-secure random number generator, the same source used for TLS and encryption.
What is the difference between UUID v4 and other UUID versions?
UUID v4 is purely random — no timestamp, no MAC address, no namespace. UUID v1 uses the host's MAC and clock; v3 and v5 hash a namespace and name; v6 and v7 are newer ordered-UUID proposals. For most web applications where you need a unique key without exposing metadata, v4 is the standard choice.
Is this UUID generator free?
Yes. Generate as many UUIDs as you like, with no sign-in and no limits.