Type some text or pick a file to get its MD5 immediately, with 16- or 32-character output and an upper/lowercase switch. Everything is computed locally in your browser; no data is uploaded.
About MD5 “encryption” and decryption
Is MD5 really encryption?
Not strictly. Encryption is reversible — with the key you can recover the original. MD5 is a one-way hash function that compresses input of any length into a fixed 128-bit digest. Information is discarded along the way, so there is no “undo” step to perform. People routinely say “MD5 encryption”, and this page follows that habit — what it means in practice is computing an MD5 value.
Can MD5 be decrypted?
No. Every site that claims to “decrypt MD5” is really doing a rainbow-table lookup: it precomputes the MD5 of vast lists of common secrets (123456, admin, dictionary words, phone-number prefixes and so on) and stores them. You paste in a hash and it checks whether that hash is in the table. A hit means your input happened to be a common string; a miss means there is nothing more it can do.
The practical consequence is twofold. A long random passphrase, or any password salted before hashing, will not be found by such a site. Conversely, if one of them resolves your password instantly, that password was already in a public wordlist and you should change it now.
So what is MD5 still good for?
It remains a reasonable choice for integrity checks: compute the MD5 of a file you downloaded and compare it with the value the publisher published, to confirm the transfer was not corrupted. It is also common for cache keys, deduplication IDs and other non-security purposes.
It should not be used for anything security-related. Practical collision attacks have existed for years — producing two different files with the same MD5 takes an ordinary computer seconds — so MD5 cannot detect tampering or back a digital signature. To store user passwords, use a purpose-built slow hash such as bcrypt, scrypt or Argon2, which salt automatically and let you tune the work factor.
16 or 32 characters — which should I pick?
The 32-character form is the complete MD5 value — all 128 bits written in hexadecimal — and it is what you want whenever the result has to match someone else's. The 16-character form is a conventional middle slice of those same 32 characters: a substring, not a different algorithm. Fewer characters means a higher chance of collision, so it only suits display contexts with a length limit.