Why hash text in the browser?
Checksums, cache keys, deduplication and integrity checks all start with a hash. Paste any text above to get its hex digest instantly — without piping potentially sensitive content through an online service’s server.
How it works
The text is encoded as UTF-8 and digested with the browser’s native Web Crypto API
(crypto.subtle.digest). Switch between SHA-256, SHA-1 and SHA-512 with the Algorithm
option; the output is lowercase hexadecimal.