UUID Generator

Generate random UUID v4 identifiers โ€” bulk generate up to 1000 at once

What is a UUID?

A UUID (Universally Unique Identifier), also known as a GUID (Globally Unique Identifier), is a 128-bit identifier that is unique across space and time. UUID v4 uses random numbers, making collisions practically impossible (1 in 5.3ร—1036).

Common Uses

Database primary keys, session tokens, API request IDs, distributed system identifiers, file naming, tracking IDs, and anywhere you need a unique identifier without coordination.

UUID v4 Format

xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx where x is any hex digit and y is one of 8, 9, a, or b.