Tested tool guide
Tested browser tools
Checked August 16, 2026
What Hash Identifier does, with a checked example
Hash Identifier classifies a pasted hash by examining visible characteristics such as length, character set, and recognizable prefixes. It can distinguish self-describing password-hash formats such as bcrypt from common hexadecimal digest shapes associated with MD5, SHA-1, and SHA-256. The result is a format identification, not proof of which program or algorithm produced the value. This matters most for bare hexadecimal strings, because unrelated hash algorithms can produce text with exactly the same length and alphabet.
Worked example
A concrete input and expected output from the current implementation.
Input
$2b$12$LQv3c1yqBWVHxkd0LHAkCOYz6TtxG6sE3YkZ/7vC3qYpYwJ5LhZ0K
->
This is a 60-character bcrypt string. The $2b$ marker identifies the bcrypt variant, 12 is its cost field, and the remaining 53 characters contain the encoded salt and checksum.