MD5 Hash Generator
Compute the 32-character MD5 hash of text, with batch and case-toggle support
How to use
Computed line by line — multiple lines produce multiple results. MD5 is mainly used to verify file integrity; do not use it to store passwords — it is no longer secure. For passwords, use bcrypt or Argon2.
FAQ
Can MD5 be decrypted?
No. MD5 is a one-way hash; the original text cannot be recovered from the result. So-called MD5 decryption online is just rainbow-table lookup and only matches common weak passwords.
What implementation does this site use?
A pure JavaScript implementation bundled in the page. Your input never leaves the browser.