0

Encoded

MD5

About MD5

MD5 is a hash function that generates a 128-bit hash value from data of any length. It has been widely used, but because it has collision-resistance weaknesses, it is not recommended for current cryptographic use.

In DenCode, the entered text is treated as a byte sequence in the selected character encoding, and the MD5 hash value is displayed as 32 hexadecimal digits.

For example, the MD5 hash value of "Hello, world!" is as follows.

6cd3556deb0da54bca060b4c39479839

Hash value characteristics

MD5 always generates the same hash value from the same input. If the input changes even slightly, the output hash value changes significantly.

A hash function is a one-way function, so the original input data cannot be restored from the hash value.

InputMD5 hash value
Hello, world!6cd3556deb0da54bca060b4c39479839
Hello, world?b35b9b4b6114ee258f063e61a53d178b

MD5 may appear when comparing old checksums, but for uses that require security such as tamper detection or signatures, consider using SHA-256 or another newer hash function.