Online UUID generator tool for developers. Free and fast.
A UUID (Universally Unique Identifier) is a 128-bit identifier used to uniquely identify data in software systems.
This tool supports:
// Generate UUID v4
crypto.randomUUID();
// UUID v5 generation example requires a library like uuid:
import { v5 as uuidv5 } from 'uuid';
const MY_NAMESPACE = uuidv5.DNS;
console.log(uuidv5('example.com', MY_NAMESPACE));
import uuid
# UUID v4
print(uuid.uuid4())
# UUID v5
namespace = uuid.NAMESPACE_DNS
print(uuid.uuid5(namespace, 'example.com'))