UUID total ,Only the first 100 are shown below. Please export the entire list as a txt file to your local computer for viewing.
A Universally Unique Identifier (UUID) is a specific form of identifier that can be safely assumed to be unique for most practical purposes. The probability of two correctly generated UUIDs being identical is almost negligible, even if they are created by different parties in two different environments. This is why UUIDs are said to be universally unique.
In this article, we will look at the characteristics of UUIDs, how their uniqueness works, and scenarios where they can simplify resource identification. Although we will approach UUIDs from the general perspective of software interacting with database records, they are broadly applicable to any use case that requires the generation of decentralized unique IDs.
A UUID is just a value that you can safely treat as unique. The risk of collision is so low that you can reasonably choose to ignore it entirely. You may see UUIDs referenced using different terminology (GUID or Globally Unique Identifier, which is Microsoft's preferred semantics), but the meaning and effect remain the same.
A true UUID is a unique identifier generated and represented by a standardized format. Valid UUIDs are defined by RFC 4122; this specification describes algorithms that can be used to generate UUIDs that remain unique between implementations without the need for a central issuing authority.
The generation algorithm emits a 128-bit unsigned integer. However, UUIDs are more commonly seen as hexadecimal strings, which can also be stored as a 16-character binary sequence. Here is an example of a UUID string:
A496400C-1C18-1D86-DD8A-36E010D6B4FF