http://fishcaro.crosswinds.net/day_3_ASCII.htm
INDEX CARD #3:
ASCII (3a)What is "ASCII"? "ASCII" stands for "American Standard Code for Information Interchange"; it is the standard character set for most computer operating systems. It has 27 = 128 characters, numbered 0 through 127. The first 32 characters (numbered 0 through 31) are obscure: ASCII was designed for use with teletypes, and many of these first characters were for that use. The remaining 96 characters are the printing characters available on a standard English keyboard. What's "ISO 646"? The ASCII character set was standardized by ISO (the International Standards Organization) as ISO-646. What's the connection between ASCII and HTML? The HTML file that you create consists only of characters from the ASCII character set. For example, there's no accented "e" in the ASCII character set, so you'll never see an accented "e" when you look through any HTML file. (Of course, after the browser "interprets" the HTML file, then you can certainly see an accented "e"!) |
PRODUCING SPECIAL CHARACTERS (3b)How do I get special characters to appear on my web page? There are extended character sets with loads of special symbols. For example, to get entry #169 in the ISO-Latin-1 character set (which is the copyright symbol,  © ), you would type "©" in your HTML document. The "&" symbol is an escape character that tells your browser that a "character code" comes next. The semicolon at the end says you're done: sometimes it can be omitted, but it never hurts to put it there to be safe. Some (but not all) commonly-used symbols have names in addition to their numbers, to make them easier to refer to. For example, to get the "Ñ" symbol, you could type either "Ñ" or "Ñ". |
Printable version of Index Card 3a
Printable version of Index Card 3b
WORKSHEET #3:
ASSIGNMENT #3: