Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Character set that is not a superset of ASCII

Is there a character set other than EBCDIC that is not a superset of 7-bit ASCII?

like image 944
Martin Geisler Avatar asked Jun 30 '11 08:06

Martin Geisler


People also ask

What is a non ASCII character?

Non-ASCII characters are those that are not encoded in ASCII, such as Unicode, EBCDIC, etc. ASCII is limited to 128 characters and was initially developed for the English language.

What character set is ASCII?

The ASCII Character Set ASCII stands for the "American Standard Code for Information Interchange". It was designed in the early 60's, as a standard character set for computers and electronic devices. ASCII is a 7-bit character set containing 128 characters.

Is UTF-16 same as ASCII?

UTF-16 and UTF-32 are incompatible with ASCII files, and thus require Unicode-aware programs to display, print and manipulate them, even if the file is known to contain only characters in the ASCII subset.


2 Answers

Yes. JIS X 0208 is not a superset of ASCII. Some versions of this standard include most of the ASCII characters, but not all of them.

A related fact is that a file encoded with UTF-16 or UTF-32 is not byte-equivalent to an ASCII file of the same characters, but since those are not character sets, and since Unicode is certainly a superset of ASCII, they do not qualify as answers to your question.

like image 191
Jeffrey L Whitledge Avatar answered Sep 18 '22 08:09

Jeffrey L Whitledge


There were some ISO 646 derivatives that were basically ASCII, but replaced various punctuation marks with various accented characters. There were also Greek, Cyrillic, Arabic and Hebrew sets that laid those characters over the Latin characters; see http://en.wikipedia.org/wiki/ISO_646 for details.

like image 37
prosfilaes Avatar answered Sep 21 '22 08:09

prosfilaes