UUID generator

UUID generator online (also called GUID): create a version 4 unique identifier, several at once, in uppercase or without hyphens.

Your UUID appears here

How to use it

1

Set the count

How many identifiers to generate at once — from one to a hundred.

2

Adjust the format

Optionally switch to uppercase or remove the hyphens.

3

Copy the result

Click “Copy” — the list of identifiers goes to your clipboard.

Why it's useful

A UUID is a 128-bit identifier that is practically guaranteed to be unique without a central counter. Developers use it as a database key, a file name, a session or object ID — anywhere collisions must be avoided.

Version 4 is built from random numbers, so getting two identical UUIDs is virtually impossible. This generator creates them in your browser with a cryptographic source and lets you adjust the format to fit your code or system.

FAQ

A UUID (Universally Unique Identifier) is a 128-bit identifier written as 32 hexadecimal characters. It's used to reliably tell objects apart without a shared counter.