← backHash / Encrypt
// tool
>_ MD5 WordPress
Generate WordPress format password hash ($P$)
⚠ Uses the phpass ($P$) format as used by WordPress. Hash differs each time due to random salt.
// output will appear here
// learn
WordPress uses an MD5 variant with phpass (Portable PHP password hashing framework). The $P$ format combines MD5 with repeated iterations (typically 2^8 or 2^14 times) and an 8-character random salt, making it more resistant to brute-force attacks than plain MD5.