TopDev
🔑

UUID / Hash / Base64 / URL Encode

Four daily dev tools in one: bulk UUID v4, SHA-256/1/512 hash, Base64 encode/decode (URL-safe option), URL encode. Web Crypto API standard.

All tools Browser-only

Generated via crypto.randomUUID() — standard UUID v4, cryptographically secure.

Four tools in one

Why no MD5?

MD5 was deprecated in the 2010s due to collision attacks — no longer safe for passwords or signatures. Web Crypto API doesn't expose it for that reason. Default to SHA-256.

Who this is for

Backend devs, API integrators, anyone debugging JSON/YAML/CSV payloads or working with structured data.

FAQ

Is my sensitive data safe?

Yes. JSON/YAML/CSV you paste is NOT uploaded to any server. All processing happens locally in your browser.

Is there a size limit?

Browser RAM dependent. Files under 10MB run smoothly. Larger files may freeze the tab.

Related tools

See all tools →