Tested tool guide
Tested browser tools
Checked August 16, 2026
What SHA-384 Hash Generator does, with a checked example
A SHA-384 hash is a 96-character hexadecimal string that changes beyond recognition when even one byte of the input changes. This tool produces that digest for any text you paste or file you pick, computing it in the browser with the WebCrypto API, so nothing you hash is uploaded anywhere. The most common misunderstanding: the digest covers exactly the bytes you enter, so an extra newline, a trailing space, or a different line ending yields a completely different hash, and no hash of any size can be reversed back into the original text.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
cb00753f45a35e8bb5a03d699ac65007272c32ab0eded1631a8b605a43ff5bed8086072ba1e7cc2358baeca134c825a7
This is the standard test vector for SHA-384 defined in FIPS 180-4: the digest of the three ASCII bytes 0x61 0x62 0x63. Append a newline after the letters and the result changes completely, so the hash is only meaningful for the exact byte sequence you hashed.