Brief History of ASCII Code
Brief History of ASCII Code
This code arises from reorder and expand the set of symbols and characters
already used in telegraphy at that time by the Bell company.
At first only included capital letters and numbers , but in 1967 was added the
lowercase letters and some control characters, forming what is known as US-
ASCII, ie the characters 0 through 127. So with this set of only 128 characters
was published in 1967 as standard, containing all you need to write in English
language.
In 1981, IBM developed an extension of 8-bit ASCII code, called "code page
437", in this version were replaced some obsolete control characters for
graphic characters. Also 128 characters were added , with new symbols,
signs, graphics and latin letters, all punctuation signs and characters needed
to write texts in other languages, such as Spanish. In this way was added the
ASCII characters ranging from 128 to 255.
IBM includes support for this code page in the hardware of its model 5150,
known as "IBM-PC", considered the first personal computer.
The operating system of this model, the "MS-DOS" also used this extended
ASCII code. Almost all computer systems today use the ASCII code to
represent characters and texts. (478) .
Enye:
ASCII code 164 = ñ ( eñe, enie, spanish letter enye, lowercase n with tilde )
ASCII code 165 = Ñ ( Spanish letter enye, uppercase N with tilde, EÑE, enie )
Currency:
ASCII code 156 = £ ( Pound sign ; symbol for the pound sterling )
Superscript:
ASCII code 251 = ¹ ( Superscript one, exponent 1, first power )
ASCII code 252 = ³ ( Superscript three, exponent 3, cube, third power )
ASCII code 253 = ² ( Superscript two, exponent 2, square, second power )
Beta:
ASCII code 225 = ß ( Letter Eszett ; scharfes S or sharp S )
Micro:
ASCII code 230 = µ ( Lowercase letter Mu ; micro sign or micron )
Congruence:
ASCII code 240 = ≡ ( relation symbol )
Degree symbol:
ASCII code 248 = ° ( Degree symbol )
ASCII code 180 = ┤ ( Box drawing character single vertical and left line )
ASCII code 191 = ┐ ( Box drawing character single line upper right corner )
ASCII code 192 = └ ( Box drawing character single line lower left corner )
ASCII code 193 = ┴ ( Box drawing character single line horizontal and up )
ASCII code 194 = ┬ ( Box drawing character single line horizontal down )
ASCII code 195 = ├ ( Box drawing character single line vertical and right )
ASCII code 196 = ─ ( Box drawing character single horizontal line )
ASCII code 197 = ┼ ( Box drawing character single line horizontal vertical )
ASCII code 217 = ┘ ( Box drawing character single line lower right corner )
ASCII code 218 = ┌ ( Box drawing character single line upper left corner )
ASCII code 186 = ║ ( Box drawing character double vertical line )
ASCII code 187 = ╗ ( Box drawing character double line upper right corner )
ASCII code 188 = ╝ ( Box drawing character double line lower right corner )
ASCII code 200 = ╚ ( Box drawing character double line lower left corner )
ASCII code 201 = ╔ ( Box drawing character double line upper left corner )
ASCII code 202 = ╩ ( Box drawing character double line horizontal and up )
ASCII code 203 = ╦ ( Box drawing character double line horizontal down )
ASCII code 204 = ╠ ( Box drawing character double line vertical and right )
ASCII code 205 = ═ ( Box drawing character double horizontal line )
ASCII code 206 = ╬ ( Box drawing character double line horizontal vertical )
Others:
ASCII code 244 = ¶ ( Paragraph sign or pilcrow ; end paragraph mark )
Reverse printing:
int main()
{
char c;
cout << "Enter a character: ";
cin >> c;
cout << "ASCII Value of " << c << " is " << int(c);
return 0;
}