How to decrypt an md5 string in PHP [duplicate]
问题 This question already has answers here : Is it possible to decrypt MD5 hashes? (24 answers) Closed 3 years ago . I have encoded a string with md5() and I want to decrypt the same string. I have written the following code: <?php $rr = md5(utf8_encode('hello')); echo $rr; $rr1 = md5(utf8_decode('5d41402abc4b2a76b9719d911017c592')); echo '<br/>' .$rr1; ?> Now I am able to encrypt the string. But now, I want to decrypt the string. I have tried: md5(utf_decode('string')); But it is not working.