UUID Decoder

UUIDs are in the format 00000000-0000-0000-0000-000000000000. Autofill with random UUID

How to decode a UUID

Embedded in every UUID is the version and variant of the UUID. Other information such as the time the UUID was generated can also be extracted in some cases. The tool above extracts this information automatically.

The UUID version is represented by the 13th digit of a hexadecimal UUID string ("M" in the diagram below). The variant is represented in the 17th digit ("N" in the diagram below).

diagram showing UUID version and variant bits
The version and variant are encoding within UUIDs.

The version is straight forward to decode. If digit M is 1 then the UUID is version-1, if M is 3 then the UUID is version-3, etc.

Version Digit ("M")

Hex DigitUUID Version
1version-1
2version-2
3version-3
4version-4
5version-5
6 - f, 0version unknown

The variant is slightly more complicated. To understand how the variant is encoding you must first understand how hexadecimals work.

UUIDs are written in hexadecimal which means each digit can be a number from 0 to 9 or a letter from a to f. That is 16 possibilities for each digit. So each hexadecimal digit represents 4 bits. There are 32 hex digits in a UUID times 4 bits gives a total of 128 bits in a UUID.

To determine the variant you look at the bits of the 17th hex digit in a UUID. For example, if the 4 binary digits begin "10" then the variant is "DCE 1.1, ISO/IEC 11578:1996". If the binary digits begin "110" then the UUID is a "Microsoft GUID". See the table below for full break down.

Only the number of leading "1"s matters. The bits after first 0 in the 17th hex digit are considered part of the "contents" of the UUID. "Contents" is a combination of time and machine identifier for version-1 UUIDS, for version-4 UUIDs contents is random, and for version-3 and version-5 the contents is a hash of the namespace and name.

Learn more about UUID versions »

Variant digit ("N")

Binary Representation Hex DigitVariant
0xxx0 - 7reserved (NCS backward compatible)
10xx8 - bDCE 1.1, ISO/IEC 11578:1996
110xc - dreserved (Microsoft GUID)
1110ereserved (future use)
1111funknown / invalid. Must end with "0"

‡ "x" in the binary representation indicates the bit is not significant for determining the variant.