Computes SHA-1, SHA-256, SHA-384 or SHA-512 of text.
Hash (SHA) computes the SHA-1, SHA-256, SHA-384, or SHA-512 digest of any text you paste in. It returns the hash as a lowercase hexadecimal string using the browser's built-in Web Crypto API, so it's handy whenever you need a quick checksum or digest while developing or debugging.
No. Hashing runs entirely in your browser using the Web Crypto API (crypto.subtle.digest). The text you enter is never uploaded or sent anywhere.
SHA-1, SHA-256, SHA-384, and SHA-512. SHA-256 is the default; pick a different one from the Algorithm option.
The digest is returned as a lowercase hexadecimal string, with each byte represented by two hex characters.
This tool hashes text input. The text is UTF-8 encoded before hashing, so identical text always produces the same digest.
No. The Web Crypto API only provides SHA-1, SHA-256, SHA-384, and SHA-512, so MD5 is not available here.