Menu

Get Md5 hash of the string

Here You can input your string and get its Md5 hash.

Md5 is one-way decoding algorithm. There is no way to encode it!

You can decode users password for example and save its Md5 hash to database. When user will login, You can decode his entered password again and compare its Md5 hash with previously saved in database. If them not equals, than entered password is wrong. And if someone will steal your database, he cannot get users password, only its Md5 hash. He can not encode it.

In PHP it works like this: md5($string)