NAVANEM

8 algorithms · runs in your browser

Hash Text (MD5, SHA-256, SHA-512)

Hash text with MD5, SHA-1, SHA-256, SHA-512, SHA-3 and RIPEMD-160, and output hex, Base64, Base64url or binary.

MD5d41d8cd98f00b204e9800998ecf8427e
SHA1da39a3ee5e6b4b0d3255bfef95601890afd80709
SHA256e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
SHA224d14a028c2a3a2bc9476102bb288234c415a2b01f828ea62ac5b3e42f
SHA512cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e
SHA38438b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da274edebfe76f65fbd51ad2f14898b95b
SHA30eab42de4c3ceb9235fc91acffe746b29c29a8c366b7c60e4e67c466f36a4304c00fa9caf9d87976ba469bcbe06713b435f091ef2769fb160cdab33d3670680e
RIPEMD1609c1185a5c5e9fc54612808977ee8f548b2258d31

About this tool

Compute cryptographic and legacy digests of any text — MD5, SHA-1, the SHA-2 family, SHA-3 and RIPEMD160 — with output in hex, Base64, Base64url or binary. Paste a string and every algorithm updates at once, which is ideal for verifying checksums or comparing values.

All hashing runs in your browser, so sensitive input never leaves the page. Use it to check a file fingerprint, generate a quick content hash, or understand how the same text maps across different algorithms.

Frequently asked questions

Should I use MD5 or SHA-1 for security?+

No. MD5 and SHA-1 are broken for collision resistance and must not be used for signatures or password storage. They remain useful only for non-security checksums. Prefer SHA-256 or SHA-3.

Is hashing the same as encryption?+

No. Hashing is one-way — you cannot recover the input from the digest. Encryption is reversible with a key. Hashes are used for integrity checks and fingerprints, not confidentiality.

Why do the same words produce the same hash?+

Hash functions are deterministic: identical input always yields identical output. That property is what lets you verify that two pieces of data match.