VantlyAll tools
All generators tools

Generate UUIDs

Version 4 UUIDs, one or five hundred, generated by your browser.

0 UUIDs

    Version 4, generated by your browser with crypto.randomUUID. 122 of the 128 bits are random, which is enough that you will not see a collision.

    Questions

    Are these safe to use as database keys?
    Yes. Version 4 UUIDs carry 122 random bits, which is enough that a collision is not something you need to plan for.
    Are they generated on a server?
    No. Your browser generates them with crypto.randomUUID, so nothing is transmitted and the same list is not sitting in somebody else logs.
    Why no version 1?
    Version 1 embeds a timestamp and the machine MAC address, which leaks information and is rarely what people actually want. If you need sortable ids, UUID v7 is the better answer and it is on the list.