MD5, SHA-256 Hash Calculator Online
Compute MD5, SHA-1, SHA-256 and SHA-512 of text. Runs entirely in your browser — nothing is uploaded.
The hash calculator computes checksums of text: MD5, SHA-1, SHA-256 and SHA-512 — all at once, updating as you type. A hash is a fixed-length "fingerprint" of data: you can't reconstruct the original text from it, but the same input always produces the same hash.
Hashes are used to verify file integrity (compare a checksum before and after downloading), to store passwords (combined with a salt), for signatures, and as cache keys. A note on security: MD5 and SHA-1 are outdated — collisions have been found for both — so use SHA-256 or SHA-512 for anything security-related, and hash passwords with dedicated slow functions (bcrypt, argon2) instead.
Everything is computed locally in your browser (MD5 in plain JS, SHA via the Web Crypto API), so your data is never transmitted anywhere.