Difference between revisions of "ASCII"

From Conservapedia
Jump to: navigation, search
(DEL/rubout isn't technically a control character; ranges 0-127, not 128; there is no standardized 'newline' character)
Line 1: Line 1:
'''ASCII''' is a method of representing typographical characters in digital form. The acronym stands for American Standard Code for Information Interchange.
+
'''ASCII''' is a common historical [[character encoding]], designed to represent English text in digital form. The acronym stands for American Standard Code for Information Interchange.  Most of the character encodings in common current use are [[proper superset]]s of ASCII: these include the [[ISO 8859]] family of encodings, the [[Windows 1252]] code page and the [[UTF-8]] encoding of the [[Unicode]] character set.
  
Each character is assigned a number from 0 to 128 - as well the 26 letters of the [[English alphabet]] in upper and lower case, all common punctuation symbols are assigned codes, as well as [[control characters]], such as Delete and Newline.
+
Each character is assigned a number from 0 to 127.  As well the 26 letters of the [[English alphabet]] in upper and lower case, many common punctuation symbols are assigned codes, as well as [[control characters]], such as backspace, carriage return and linefeed.
  
 
Because there are 128 separate codes, an ASCII character can be represented by a [[signed char]] type in the [[C]] programming language.
 
Because there are 128 separate codes, an ASCII character can be represented by a [[signed char]] type in the [[C]] programming language.

Revision as of 00:32, April 28, 2007

ASCII is a common historical character encoding, designed to represent English text in digital form. The acronym stands for American Standard Code for Information Interchange. Most of the character encodings in common current use are proper supersets of ASCII: these include the ISO 8859 family of encodings, the Windows 1252 code page and the UTF-8 encoding of the Unicode character set.

Each character is assigned a number from 0 to 127. As well the 26 letters of the English alphabet in upper and lower case, many common punctuation symbols are assigned codes, as well as control characters, such as backspace, carriage return and linefeed.

Because there are 128 separate codes, an ASCII character can be represented by a signed char type in the C programming language.