UUID v5 / v3 Generator makes UUIDs that are a function of a namespace UUID and a name, so the same inputs always give the same UUID.
Version 5 uses SHA-1, version 3 uses MD5. It also parses any UUID and reports its version and variant. It runs in your browser.
Use v5 when you want the UUID to be reproducible from a known name, for example an ID derived from a URL. Use v4 for a purely random ID.
It works and is part of the spec, but it relies on MD5. Prefer v5 unless you must match an existing v3 scheme.
A UUID that scopes the name so the same name in two namespaces produces different UUIDs. The standard ones for DNS, URL, and so on are built in.
No. The tool runs entirely on this page.