aliases:
- Character encoding
tags:
- Type/Tech
- area/tech
- stem
publish: true
version: 1
dateCreated: 2021-10-25, 22:55
dateModified: 2024-03-14, 05:11
from:
related:
contra:
to:
A Binary-to-text Encoding is encoding of data in plain text. More precisely, it is an encoding of binary data in a sequence of printable characters. These encodings are necessary for transmission of data when the communication channel does not allow binary data or is not 8-bit clean. PGP documentation uses the term "ASCII armor" for binary-to-text encoding when referring to Base64. | |
---|---|
wikipedia:: Binary-to-text encoding |
Unlike the natural translation between binary and decimal numbers, there is no natural translation between integers and characters. For example, you might create a pairing of 0 to a, 1 to b, and so on. But what integer should be paired with $ or a tab? Since there is no natural way to translate between characters and integers, computer scientists have had to make such translations up. Such translations are called character encodings.
Symbols, tokens, tokenizing - e.g.
compiling
parsing - e.g. to render or display
converting