Here are all the printable characters, in collating order:

  1. ! " # $ % & \' ( ) * + , - . /
  2. 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @
  3. A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
  4. [ \ ] ^ _ `
  5. a b c d e f g h i j k l m n o p q r s t u v w x y z
  6. { | } ~
  7.  
  8. ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯
  9. ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿
  10.  
  11. À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö
  12. ×
  13. Ø Ù Ú Û Ü Ý Þ
  14. ß
  15. à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö
  16. ÷
  17. ø ù ú û ü ý þ
  18. ÿ

The first six rows are the ASCII character set.

Note the ordinary ASCII space (before `!\’) and the ISO Latin-1 non-breaking space (before `¡\’)


The columns show, in order:

  • HTML: the HTML notation (decimal);
  • OCTL: the C/Modula-3 octal notation;
  • HEX: the hexadecimal code, as used e.g. in MIME quoted-printable encoding;
  • CMP: the Sun/X11 “Compose” key combinations;
  • CHR: the charater itself, when HTML-printable;
  • MEANING: the ISO-8859-1 (and ASCII) definition.

     


  1. HTML OCTL HEX CMP CHR MEANING
  2. ------ + ---- + --- + --- + --- + ------------------------------
  3. &#000; | \000 | =00 | | | Invalid (ASCII NUL)
  4. &#001; | \001 | =01 | | | Unused (ASCII SOH)
  5. &#002; | \002 | =02 | | | Unused (ASCII STX)
  6. &#003; | \003 | =03 | | | Unused (ASCII ETX)
  7. &#004; | \004 | =04 | | | Unused (ASCII EOT)
  8. &#005; | \005 | =05 | | | Unused (ASCII ENQ)
  9. &#006; | \006 | =06 | | | Unused (ASCII ACK)
  10. &#007; | \007 | =07 | | | Unused (ASCII BEL, audible bell)
  11. &#008; | \010 | =08 | | | Unused (ASCII BS, backspace)
  12. | \011 | =09 | | | Horizontal tab (ASCII HT)
  13.  
  14. | \012 | =0A | | | Line feed (ASCII NL, newline)
  15. &#011; | \013 | =0B | | | Unused (ASCII VT, vertical tab)
  16. &#012; | \014 | =0C | | | Unused (ASCII NP, new page)
  17.  
  18. | \015 | =0D | | | Carriage Return (ASCII CR)
  19. &#014; | \016 | =0E | | | Unused (ASCII SO)
  20. &#015; | \017 | =0F | | | Unused (ASCII SI)
  21. &#016; | \020 | =10 | | | Unused (ASCII DLE)
  22. &#017; | \021 | =11 | | | Unused (ASCII DC1)
  23. &#018; | \022 | =12 | | | Unused (ASCII DC2)
  24. &#019; | \023 | =13 | | | Unused (ASCII DC3)
  25. &#020; | \024 | =14 | | | Unused (ASCII DC4)
  26. &#021; | \025 | =15 | | | Unused (ASCII NAK)
  27. &#022; | \026 | =16 | | | Unused (ASCII SYN)
  28. &#023; | \027 | =17 | | | Unused (ASCII ETB)
  29. &#024; | \030 | =18 | | | Unused (ASCII CAN)
  30. &#025; | \031 | =19 | | | Unused (ASCII EM)
  31. &#026; | \032 | =1A | | | Unused (ASCII SUB)
  32. &#027; | \033 | =1B | | | Unused (ASCII ESC, escape)
  33. &#028; | \034 | =1C | | | Unused (ASCII FS)
  34. &#029; | \035 | =1D | | | Unused (ASCII GS)
  35. &#030; | \036 | =1E | | | Unused (ASCII RS)
  36. &#031; | \037 | =1F | | | Unused (ASCII US)
  37. | \040 | =20 | | ( ) | Space (ASCII SP)
  38. ! | \041 | =21 | | (!) | Exclamation mark
  39. " | \042 | =22 | | (") | Quotation mark (&quot;)
  40. # | \043 | =23 | | (#) | Number sign
  41. $ | \044 | =24 | | ($) | Dollar sign
  42. % | \045 | =25 | | (%) | Percent sign
  43. & | \046 | =26 | | (&) | Ampersand (&amp;)
  44. ' | \047 | =27 | | (\') | Apostrophe (right single quote)
  45. ( | \050 | =28 | | (() | Left parenthesis
  46. ) | \051 | =29 | | ()) | Right parenthesis
  47. * | \052 | =2A | | (*) | Asterisk
  48. + | \053 | =2B | | (+) | Plus sign
  49. , | \054 | =2C | | (,) | Comma
  50. - | \055 | =2D | | (-) | Hyphen
  51. . | \056 | =2E | | (.) | Period (fullstop)
  52. / | \057 | =2F | | (/) | Solidus (slash)
  53. 0 | \060 | =30 | | (0) | Digit 0
  54. . . .
  55. 9 | \071 | =39 | | (9) | Digit 9
  56. : | \072 | =3A | | (:) | Colon
  57. ; | \073 | =3B | | (;) | Semi-colon
  58. < | \074 | =3C | | (<) | Less than (&lt;)
  59. = | \075 | =3D | | (=) | Equals sign
  60. > | \076 | =3E | | (>) | Greater than (&gt;)
  61. ? | \077 | =3F | | (?) | Question mark
  62. @ | \100 | =40 | | (@) | Commercial at-sign
  63. A | \101 | =41 | | (A) | Uppercase letter A
  64. . . .
  65. Z | \132 | =5A | | (Z) | Uppercase letter Z
  66. [ | \133 | =5B | | ([) | Left square bracket
  67. \ | \134 | =5C | | (\) | Reverse solidus (backslash)
  68. ] | \135 | =5D | | (]) | Right square bracket
  69. ^ | \136 | =5E | | (^) | Caret
  70. _ | \137 | =5F | | (_) | Horizontal bar (underscore)
  71. ` | \140 | =60 | | (`) | Reverse apostrophe (left single quote)
  72. a | \141 | =61 | | (a) | Lowercase letter a
  73. . . .
  74. z | \172 | =7A | | (z) | Lowercase letter z
  75. { | \173 | =7B | | ({) | Left curly brace
  76. | | \174 | =7C | | (|) | Vertical bar
  77. } | \175 | =7D | | (}) | Right curly brace
  78. ~ | \176 | =7E | | (~) | Tilde
  79.  | \177 | =7F | | | Unused (ASCII DEL)
  80. € | \200 | =80 | | | Unused
  81.  | \201 | =81 | | | Unused
  82. ‚ | \202 | =82 | | | Unused
  83. ƒ | \203 | =83 | | | Unused
  84. „ | \204 | =84 | | | Unused
  85. … | \205 | =85 | | | Unused
  86. † | \206 | =86 | | | Unused
  87. ‡ | \207 | =87 | | | Unused
  88. ˆ | \210 | =88 | | | Unused
  89. ‰ | \211 | =89 | | | Unused
  90. Š | \212 | =8A | | | Unused
  91. ‹ | \213 | =8B | | | Unused
  92. Œ | \214 | =8C | | | Unused
  93.  | \215 | =8D | | | Unused
  94. Ž | \216 | =8E | | | Unused
  95.  | \217 | =8F | | | Unused
  96.  | \220 | =90 | | | Unused
  97. ‘ | \221 | =91 | | | Unused
  98. ’ | \222 | =92 | | | Unused
  99. “ | \223 | =93 | | | Unused
  100. ” | \224 | =94 | | | Unused
  101. • | \225 | =95 | | | Unused
  102. – | \226 | =96 | | | Unused
  103. — | \227 | =97 | | | Unused
  104. ˜ | \230 | =98 | | | Unused
  105. ™ | \231 | =99 | | | Unused
  106. š | \232 | =9A | | | Unused
  107. › | \233 | =9B | | | Unused
  108. œ | \234 | =9C | | | Unused
  109.  | \235 | =9D | | | Unused
  110. ž | \236 | =9E | | | Unused
  111. Ÿ | \237 | =9F | | | Unused
  112.   | \240 | =A0 | | ( ) | Non-breaking space (&nbsp;)
  113. ¡ | \241 | =A1 | ! ! | (¡) | Inverted exclamation
  114. ¢ | \242 | =A2 | c / | (¢) | Cent sign
  115. £ | \243 | =A3 | l - | (£) | Pound sterling
  116. ¤ | \244 | =A4 | o x | (¤) | General currency sign
  117. ¥ | \245 | =A5 | y - | (¥) | Yen sign
  118. ¦ | \246 | =A6 | | | | (¦) | Broken vertical bar
  119. § | \247 | =A7 | s o | (§) | Section sign
  120. ¨ | \250 | =A8 | " " | (¨) | Umlaut (dieresis)
  121. © | \251 | =A9 | c o | (©) | Copyright
  122. ª | \252 | =AA | - a | (ª) | Feminine ordinal
  123. « | \253 | =AB | < < | («) | Left angle quote, guillemotleft
  124. ¬ | \254 | =AC | - , | (¬) | Not sign
  125. ­ | \255 | =AD | - - | (­) | Soft hyphen
  126. ® | \256 | =AE | r o | (®) | Registered trademark
  127. ¯ | \257 | =AF | ^ - | (¯) | Macron accent
  128. ° | \260 | =B0 | ^ * | (°) | Degree sign
  129. ± | \261 | =B1 | + - | (±) | Plus or minus
  130. ² | \262 | =B2 | ^ 2 | (²) | Superscript two
  131. ³ | \263 | =B3 | ^ 3 | (³) | Superscript three
  132. ´ | \264 | =B4 | \ \ | (´) | Acute accent
  133. µ | \265 | =B5 | / u | (µ) | Micro sign
  134. ¶ | \266 | =B6 | P ! | (¶) | Paragraph sign
  135. · | \267 | =B7 | ^ . | (·) | Middle dot
  136. ¸ | \270 | =B8 | , , | (¸) | Cedilla
  137. ¹ | \271 | =B9 | ^ 1 | (¹) | Superscript one
  138. º | \272 | =BA | _ o | (º) | Masculine ordinal
  139. » | \273 | =BB | > > | (») | Right angle quote, guillemotright
  140. ¼ | \274 | =BC | 1 4 | (¼) | Fraction one-fourth
  141. ½ | \275 | =BD | 1 2 | (½) | Fraction one-half
  142. ¾ | \276 | =BE | 3 4 | (¾) | Fraction three-fourths
  143. ¿ | \277 | =BF | ? ? | (¿) | Inverted question mark
  144. À | \300 | =C0 | A ` | (À) | Capital A, grave accent
  145. Á | \301 | =C1 | A \' | (Á) | Capital A, acute accent
  146. Â | \302 | =C2 | A ^ | (Â) | Capital A, circumflex accent
  147. Ã | \303 | =C3 | A ~ | (Ã) | Capital A, tilde
  148. Ä | \304 | =C4 | A " | (Ä) | Capital A, dieresis or umlaut mark
  149. Å | \305 | =C5 | A * | (Å) | Capital A, ring
  150. Æ | \306 | =C6 | A E | (Æ) | Capital AE dipthong (ligature)
  151. Ç | \307 | =C7 | C , | (Ç) | Capital C, cedilla
  152. È | \310 | =C8 | E ` | (È) | Capital E, grave accent
  153. É | \311 | =C9 | E \' | (É) | Capital E, acute accent
  154. Ê | \312 | =CA | E ^ | (Ê) | Capital E, circumflex accent
  155. Ë | \313 | =CB | E " | (Ë) | Capital E, dieresis or umlaut mark
  156. Ì | \314 | =CC | I ` | (Ì) | Capital I, grave accent
  157. Í | \315 | =CD | I \' | (Í) | Capital I, acute accent
  158. Î | \316 | =CE | I ^ | (Î) | Capital I, circumflex accent
  159. Ï | \317 | =CF | I " | (Ï) | Capital I, dieresis or umlaut mark
  160. Ð | \320 | =D0 | D - | (Ð) | Capital Eth, Icelandic
  161. Ñ | \321 | =D1 | N ~ | (Ñ) | Capital N, tilde
  162. Ò | \322 | =D2 | O ` | (Ò) | Capital O, grave accent
  163. Ó | \323 | =D3 | O \' | (Ó) | Capital O, acute accent
  164. Ô | \324 | =D4 | O ^ | (Ô) | Capital O, circumflex accent
  165. Õ | \325 | =D5 | O ~ | (Õ) | Capital O, tilde
  166. Ö | \326 | =D6 | O " | (Ö) | Capital O, dieresis or umlaut mark
  167. × | \327 | =D7 | x x | (×) | Multiply sign
  168. Ø | \330 | =D8 | O / | (Ø) | Capital O, slash
  169. Ù | \331 | =D9 | U ` | (Ù) | Capital U, grave accent
  170. Ú | \332 | =DA | U \' | (Ú) | Capital U, acute accent
  171. Û | \333 | =DB | U ^ | (Û) | Capital U, circumflex accent
  172. Ü | \334 | =DC | U " | (Ü) | Capital U, dieresis or umlaut mark
  173. Ý | \335 | =DD | Y \' | (Ý) | Capital Y, acute accent
  174. Þ | \336 | =DE | P | | (Þ) | Capital THORN, Icelandic
  175. ß | \337 | =DF | s s | (ß) | Small sharp s, German (sz ligature)
  176. à | \340 | =E0 | a ` | (à) | Small a, grave accent
  177. á | \341 | =E1 | a \' | (á) | Small a, acute accent
  178. â | \342 | =E2 | a ^ | (â) | Small a, circumflex accent
  179. ã | \343 | =E3 | a ~ | (ã) | Small a, tilde
  180. ä | \344 | =E4 | a " | (ä) | Small a, dieresis or umlaut mark
  181. å | \345 | =E5 | a * | (å) | Small a, ring
  182. æ | \346 | =E6 | a e | (æ) | Small ae dipthong (ligature)
  183. ç | \347 | =E7 | c , | (ç) | Small c, cedilla
  184. è | \350 | =E8 | e ` | (è) | Small e, grave accent
  185. é | \351 | =E9 | e \' | (é) | Small e, acute accent
  186. ê | \352 | =EA | e ^ | (ê) | Small e, circumflex accent
  187. ë | \353 | =EB | e " | (ë) | Small e, dieresis or umlaut mark
  188. ì | \354 | =EC | i ` | (ì) | Small i, grave accent
  189. í | \355 | =ED | i \' | (í) | Small i, acute accent
  190. î | \356 | =EE | i ^ | (î) | Small i, circumflex accent
  191. ï | \357 | =EF | i " | (ï) | Small i, dieresis or umlaut mark
  192. ð | \360 | =F0 | d - | (ð) | Small eth, Icelandic
  193. ñ | \361 | =F1 | n ~ | (ñ) | Small n, tilde
  194. ò | \362 | =F2 | o ` | (ò) | Small o, grave accent
  195. ó | \363 | =F3 | o \' | (ó) | Small o, acute accent
  196. ô | \364 | =F4 | o ^ | (ô) | Small o, circumflex accent
  197. õ | \365 | =F5 | o ~ | (õ) | Small o, tilde
  198. ö | \366 | =F6 | o " | (ö) | Small o, dieresis or umlaut mark
  199. ÷ | \367 | =F7 | - : | (÷) | Division sign
  200. ø | \370 | =F8 | o / | (ø) | Small o, slash
  201. ù | \371 | =F9 | u ` | (ù) | Small u, grave accent
  202. ú | \372 | =FA | u \' | (ú) | Small u, acute accent
  203. û | \373 | =FB | u ^ | (û) | Small u, circumflex accent
  204. ü | \374 | =FC | u " | (ü) | Small u, dieresis or umlaut mark
  205. ý | \375 | =FD | y \' | (ý) | Small y, acute accent
  206. þ | \376 | =FE | p | | (þ) | Small thorn, Icelandic
  207. ÿ | \377 | =FF | y " | (ÿ) | Small y, dieresis or umlaut mark
  1. HTML entity names are given in the “MEANING” column only for ampersand, quote, less than, and greater than, which are significant in HTML syntax; and for the non-breaking space, which may be confused with ordinary space. HTML entity names exist for many other characters, but they are superfluous: the ISO-8859-1 eight-bit codes will work, by definition, on any browser.

  2. The characters carriage return (ASCII CR) and line feed (ASCII NL, newline) are equivalent; they are treated as whitespace, except in <pre> contexts, where they force a line break. (However, a line feed is ignored if it immediately follows a carriage return.)

  3. The horizontal tab character (ASCII HT) skips to the next tabbing column in <pre> contexts, and is treated as whitespace elsewhere.

  4. The non-breaking space (&nbsp;) is honored even in non-<pre> contexts, and can be used to insert extra space between words, images, etc., like this: |      |.

  1. Alternative Sun/X11 “Compose” sequences for the Icelandic “thorn” are “t h” (þ, lowercase) and “T H” (Þ, uppercase).

  2. Note that the Sun/X11 “Compose” sequence for masculine ordinal (º) uses an underscore, while the feminine ordinal (ª) uses a minus sign. It takes a lot of imagination to come up with such ideas…


Composed by J. Stolfi from several sources found throughout the net.

http://www.ic.unicamp.br/~stolfi/EXPORT/www/ISO-8859-1-Encoding.html

版权声明:本文为findumars原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/findumars/p/5334025.html%20