Content deleted Content added
→Encoding standards: Apply erratum |
s/organised/organized (en_US not en_UK afaik) |
||
Line 4:
The ASCII text-encoding standard uses 128 unique values (0–127) to represent the alphabetic, numeric, and punctuation characters commonly used in the [[English language]], plus a selection of 'control codes' which do not represent printable characters. For example, the capital letter ''A'' is ASCII character 65, the numeral ''2'' is ASCII 50, the character ''}'' is ASCII 125, and the [[metacharacter ]]''carriage return'' is ASCII 13. Systems based on ASCII use seven bits to represent these values digitally.
By contrast, most computers store data in memory
It is often desirable, however, to be able to send non-textual data through text-based systems, such as when one might attach an image file to an e-mail message. To accomplish this, the data are encoded in some way, such that eight-bit data are encoded into seven-bit ASCII characters (generally using only alphanumeric and punctuation characters). Upon safe arrival at its destination, it is then decoded back to its eight-bit form. This process is referred to as binary to text encoding. Many programs perform this conversion to allow for data-transport, such as [[PGP]] and [[GNU Privacy Guard]] (GPG).
|