What is a UUID?
A UUID (Universally Unique Identifier) is a 128-bit label used for information in computer systems. Also known as a GUID (Globally Unique Identifier) in the Microsoft ecosystem, these strings are practically guaranteed to be unique across space and time without requiring a central registration authority.
This generator outputs Version 4 UUIDs. Unlike previous versions that relied on MAC addresses or timestamps, Version 4 is generated using pseudorandom numbers via the browser's native crypto.randomUUID() method, ensuring both absolute randomness and zero chance of collisions in standard applications.