UUID Generator

Generate v4 UUIDs in bulk.

uuid-generator.local
Generate some UUIDs to see them here.

Overview

Generates UUIDs, the long unique identifiers used as database keys, request IDs, and anywhere you need a value that will not collide with another. It produces version 4 (random) UUIDs in your browser.

How it works

A UUID is a 128-bit identifier, shown as 32 hexadecimal digits in five hyphen-separated groups. A version 4 UUID fills almost all of those bits with random data, which makes the chance of two generators ever producing the same value vanishingly small, so you do not need a central authority to hand out IDs. The values are generated locally on your device.

How to use it

  1. Generate a UUID.
  2. Copy the value.
  3. Use it as a key, identifier, or token in your application.
  4. Generate more as needed.

Examples

Format

A version 4 UUID looks like 3f2504e0-4f89-41d3-9a0c-0305e82c3301.

Use as a key

Assign one to a new record so it has a unique identifier that does not depend on a database sequence.

FAQ

What is a UUID?
A universally unique identifier, a 128-bit value used to label something uniquely without coordinating with a central system.
Will two UUIDs ever clash?
With version 4, a collision is so unlikely that for practical purposes it will not happen.
What is version 4?
The variant that is generated from random data, as opposed to versions based on timestamps or hardware addresses.
Are UUIDs secret or secure?
No. They are unique, not secret. Do not treat a UUID as a password or a security token on its own.
Is anything sent to a server?
No. UUIDs are generated in your browser.

Related tools

Embed this tool

Paste this snippet to put the tool on your own site. It runs entirely in the visitor's browser, the same as it does here.

<iframe src="https://tooldok.com/embed/uuid-generator/" title="UUID Generator by Tooldok" width="100%" height="560" style="border:1px solid #16130d;border-radius:16px;max-width:720px" loading="lazy"></iframe> <p style="font:13px sans-serif"><a href="https://tooldok.com/tools/uuid-generator/" target="_blank" rel="noopener">UUID Generator</a> by <a href="https://tooldok.com/" target="_blank" rel="noopener">Tooldok</a></p>