UUIDs, cryptographic hashes, random data, passwords, API keys, JWT tokens, and encoding utilities โ all computed locally in your browser.
Generator
No settings required โ click Generate New to produce a fresh UUID.
0fb7883b-8657-4f41-ac08-4bc2ddf5d084
UUID V4 ยท RFC 4122 compliant
100% private: everything is computed locally in your browser โ no input is ever uploaded. SHA-1/256/384/512 and HMAC use the native Web Crypto API; MD5 uses a standard RFC 1321 implementation; random values use the crypto.getRandomValues() CSPRNG. Note: MD5 and SHA-1 are not collision-resistant โ use SHA-256 or stronger for security-sensitive work.
UUID v1/3/4/5
RFC 4122
Hash Functions
MD5 ยท SHA-*
Passwords & Keys
Configurable
Encode / Decode
Base64 ยท URL ยท Hex
The Hash and Random Generator covers the full range of developer token needs in a single tool: cryptographic hashes (MD5, SHA-1, SHA-256, SHA-384, SHA-512), all four UUID versions (v1 time-based, v3 MD5 namespace, v4 random, v5 SHA-1 namespace), random strings, passwords, API keys, and signed JWT tokens. Every computation runs locally โ SHA-1 through SHA-512 and HMAC use the browser-native Web Crypto API (SubtleCrypto), MD5 uses a faithful RFC 1321 implementation because Web Crypto does not expose MD5, and all randomness is drawn from crypto.getRandomValues() so outputs are cryptographically unpredictable.
The Encode/Decode section handles Base64 (with proper UTF-8 support via TextEncoder/TextDecoder), hexadecimal encoding, URL percent-encoding, and HTML entity encoding and decoding. A history panel keeps the last 20 generations so you can refer back or export them as CSV โ all without a page reload or any network call.
Full Guide Available
Learn the difference between MD5, SHA-256, HMAC, UUID, and when to use each hash function.
Cryptographic hash functions are one of the foundational building blocks of modern digital security. They'reโฆ
Read guide โArticleGenerate MD5, SHA-1, SHA-256, SHA-512 hashes, encode Base64, sign HMAC, and decode JWTs.
Read guide โBlogQR codes have had several near-death experiences since Denso Wave invented them in 1994. For over a decadeโฆ
Read guide โ