Algorithm reference
SHA-384 hash calculator
SHA-384 is part of the widely deployed SHA-2 family.
Modern
384-bit output
96 hex characters
Digest calculator
Text to hash
Never enter a real account password or any other secret. Submitted text is processed by the server, but never placed in the URL, logs, analytics, or ads.
Practical guidance
About SHA-384
File integrity, signatures, content addressing, and protocol digests.
Collision resistance
No practical collision is publicly known for the full algorithm.
Examples
Use SHA-384
Command line
printf %s "hello" | openssl dgst -sha384Go
sum := sha512.Sum384([]byte("hello")); fmt.Printf("%x\n", sum)Python
hashlib.sha384(b"hello").hexdigest()JavaScript / browser
crypto.subtle.digest("SHA-384", new TextEncoder().encode("hello"))