Time-based UUID v1 generator
A UUID v1 packs a timestamp, a clock sequence, and a node identifier into a 128-bit value defined by RFC 4122. The embedded timestamp means v1 UUIDs are roughly ordered by when they were created, which can be useful for debugging or loosely time-sortable keys.
Traditionally the node field held the machine’s MAC address. Browsers can’t read hardware addresses, so this tool fills it with a random node (multicast bit set) instead — you get a spec-compliant v1 UUID with zero hardware leakage. Everything runs entirely in your browser, nothing is uploaded.