Dynamic Web Sites » Quick Reference » Hash String Encoding

Generate a hash encoded string from any input text string. The original string cannot be reconstructued from the hash string. This process is referrered to as one-way encoding.

Hash codes are commonly used as a reference value when validating messages following transmission. A one-way hash code is generated from a message prior to transmission and provided to the receiver. Following transmission, the receiver generates a one-way hash from the message using the same method applied by the sender. If the values match, the message bytes are considered to be intact and in the correct order.

Plain Text String


Hash Encoded String

Also try:

Base 64 Character Coding
the two-way encoding scheme to encode/decode binary and plain text strings. The encoding scheme used for MIME encoding.
Hexadecimal Character Coding
the coding scheme commonly used in computing to represent program data.
URL Character Coding
the standard method to encode specific characters for safe use in URL strings.