Pick an algorithm and type or paste text to see its cryptographic hash as a hex string. A hash is a fixed-length fingerprint of the input — the same text always yields the same digest, and any change produces a completely different one, which is why hashes are used for checksums and integrity checks.
Hashing runs entirely in your browser via the Web Crypto API (`crypto.subtle.digest`), so the input never leaves your device. Note that a plain hash is not encryption and, for passwords, is not a substitute for a purpose-built algorithm like bcrypt or Argon2 with a salt.