Developer tools

Hash generator

One-way hashes for arbitrary text—pick MD5 or SHA-256 and copy the hex digest. Nothing is sent to a server.

How it works

Enter any text and choose an algorithm. Digests are computed entirely in your browser with Web Crypto (MD5 via a lightweight implementation where needed). Use hashes for file checksums, cache keys, or sanity checks—not for storing user passwords (server-side bcrypt or Argon2 is appropriate there).

Related tools