Tested tool guide
Tested browser tools
Checked August 16, 2026
What UUID Generator & Parser does, with a checked example
Every UUID carries its own ID card in two fixed positions: the 13th hex character declares the version and the 17th declares the variant. This page generates UUIDs in versions 1, 4, 5, and 7, and when you paste in any UUID it reads those markers, unpacks the timestamp hidden inside v1 and v7, and reports the fields that version defines. Two things usually surprise people: a v5 UUID is a one-way hash, so the same namespace-plus-name always reproduces the same string, while a v4 is pure randomness; and v1 time counts 100-nanosecond ticks from 1582-10-15, not the Unix epoch.
Worked example
A concrete input and expected output from the current implementation.
Input
B4CC8000-A838-11EE-83E5-3C2E1F0A9B87
->
Expected output
Version 1 (time-based); variant 10xx (standard); timestamp 2024-01-01 00:00:00.0000000 UTC; clock sequence 0x3E5; node 3C:2E:1F:0A:9B:87
The 13th character is 1, so this is version 1. Its three time fields (B4CC8000, A838, 1EE) reassemble to 139,233,600,000,000,000 ticks of 100 nanoseconds since 1582-10-15; subtracting the 122,192,928,000,000,000-tick offset to the Unix epoch leaves 1,704,067,200 seconds, which is 2024-01-01 00:00:00 UTC exactly.