🍺ASCII相关文章汇总如下🍺:
1、🎈ASCII码对照表(255个ascii字符汇总)🎈
2、🎈ASCII码对照表(Unicode 字符集列表)🎈
3、🎈ASCII码对照表(emoji表情符号)🎈
4、🎈ASCII码对照表(Python代码实现打印)🎈
5、🎈ASCII码对照表(C++17 实现ANSI、UTF8、Unicode编码互转)🎈

《等雨记》

咦,星星⭐ 都出来了,
哎,月亮🌙 都挂树梢了,
哦,黄花菜🍀都凉了。
戈戈:咱们走吧。
狄狄:不能。因为我们在等待下雨!
戈戈:为什么大人们都不打电话📞?
狄狄:怕你不接。
戈戈:为什么大人们都不回短信✉?
狄狄:因为不重要。
狄狄:燕雀🐦安知鸿鹄之志哉!
戈戈:苟富贵,勿相忘?
狄狄:白首终分离,江湖两相忘。

戈戈:......
许久之后,戈戈再次提议离开,狄狄表示同意,但他们仍然坐在小板凳上……
幕落。

目录

1、ASCII码的简介

2、ASCII码的图片

3、ASCII码的中文表格

3.1 ASCII基本字符,0 - 127,共128个。

3.2 ASCII控制字符 ,0 - 31,共32个。

3.3 ASCII可显示字符 ,32 - 127,共96个。

3.4 ASCII扩展字符,128 - 255,共128个。

4、ASCII码的英文表格

4.1 Detailed ASCII TABLE [Non-Printable Characters]

4.2 Detailed ASCII TABLE [Printable Characters] 

4.3 Detailed ASCII TABLE [Extended Characters 1] 

4.4 Detailed ASCII TABLE [Extended Characters 2]

后续

1、ASCII码的简介

ASCII(American Standard Code for Information Interchange,美国信息互换标准代码)是一套基于拉丁字母的字符编码,共收录了 128 个字符,用一个字节就可以存储,它等同于国际标准 ISO/IEC 646。ASCII 规范于 1967 年第一次发布,最后一次更新是在 1986 年。

ASCII编码范围0x00-0x7F,即十进制的0-127,定义了128个单字节字符。它包含了 33 个控制字符(具有某些特殊功能但是无法显示的字符)和 95 个可显示字符(数字、字母、符号)。国标码GB18030、国际码Unicode均兼容ASCII编码。

Short for American Standard Code for Information InterexchangeASCII is a standard that assigns lettersnumbers, and other characters in the 256 slots available in the 8-bit code. The ASCII decimal (Dec) number is created from binary, which is the language of all computers.

ASCII (/ˈæskiː/ (listenASS-kee): 6  abbreviated from American Standard Code for Information Interchange, is a character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications equipment, and other devices. Most modern character-encoding schemes are based on ASCII, although they support many additional characters.The Internet Assigned Numbers Authority (IANA) prefers the name US-ASCII for this character encoding. ASCII is one of the IEEE milestones.

The ASCII table is divided into three different sections.

  • Non-printable, system codes between 0 and 31.
  • Lower ASCII, between 32 and 127. This table originates from the older, American systems, which worked on 7-bit character tables.
  • Higher ASCII, between 128 and 255. This portion is programmable; characters are based on the language of your operating system or program you are using. Foreign letters are also placed in this section.
  • 第一部分:ASCII非打印控制字符,0~31及127(共33个)是控制字符或通信专用字符
  • 第二部分:ASCII打印字符,32~126(共95个)是字符(32sp是空格),其中48~57为0到9十个阿拉伯数字;65~90为26个大写英文字母,97~122号为26个小写英文字母,其余为一些标点符号、运算符号等。
  • 第三部分:扩展ASCII打印字符,后128个称为扩展ASCII码,目前许多基于x86的系统都支持使用扩展(或“高”)ASCII。扩展 ASCII 码允许将每个字符的第 8 位用于确定附加的 128 个特殊符号字符、外来语字母和图形符号。
  • 汉字编码:常用的汉字字符集有GB2312-80,GBK,Big5,unicode 等。

2、ASCII码的图片

Points which represented a different character in previous versions (the 1963 version or the 1965 draft) are shown boxed. Points assigned since the 1963 version but otherwise unchanged are shown lightly shaded relative to their legend colors. 

 

The 95 graphic ASCII characters, numbered 32 to 126 (decimal): 

3、ASCII码的中文表格

前128个称为基本ASCII码,从二进制角度来看,它们的最高位bit[7]=0,只使用了低7位bit[6,0]来进行编码。


3.1 ASCII基本字符,0 - 127,共128个。

ASCII码

字符
16进制10进制2进制
0x00000000000NUL 空
0x01100000001SOH 标题开始
0x02200000010STX  正文开始
0x03300000011ETX  正文结束
0x04400000100EOT  传输结束
0x05500000101ENQ  询问字符
0x06600000110ACK  承认
0x07700000111BEL  报警
0x08800001000BS   退一格
0x09900001001HT   横向制表
0x0A1000001010LF   换行
0x0B1100001011VT   垂直制表
0x0C1200001100FF   走纸控制
0x0D1300001101CR   回车
0x0E1400001110SO   移位输出
0x0F1500001111SI   移位输入
0x101600010000DLE  数据链路转义
0x111700010001DC1  设备控制1
0x121800010010DC2  设备控制2
0x131900010011DC3  设备控制3
0x142000010100DC4  设备控制4
0x152100010101NAK  否定
0x162200010110SYN  空转同步
0x172300010111ETB  信息组传送结束
0x182400011000CAN  作废
0x192500011001EM   纸尽
0x1A2600011010SUB  换置
0x1B2700011011ESC  换码
0x1C2800011100FS   文字分隔符
0x1D2900011101GS   组分隔符
0x1E3000011110RS   记录分隔符
0x1F3100011111US   单元分隔符
0x203200100000(space)
0x213300100001
0x223400100010
0x233500100011#
0x243600100100$
0x253700100101%
0x263800100110&
0x273900100111'
0x284000101000(
0x294100101001)
0x2A4200101010*
0x2B4300101011+
0x2C4400101100,
0x2D4500101101-
0x2E4600101110.
0x2F4700101111/
0x3048001100000
0x3149001100011
0x3250001100102
0x3351001100113
0x3452001101004
0x3553001101015
3654001101106
0x3755001101117
0x3856001110008
0x3957001110019
0x3A5800111010:
0x3B5900111011;
0x3C6000111100<
0x3D6100111101=
0x3E6200111110>
0x3F6300111111?
0x406401000000@
0x416501000001A
0x426601000010B
0x436701000011C
0x446801000100D
0x456901000101E
0x467001000110F
0x477101000111G
0x487201001000H
0x497301001001I
0x4A7401001010J
0x4B7501001011K
0x4C7601001100L
0x4D7701001101M
0x4E7801001110N
0x4F7901001111O
0x508001010000P
0x518101010001Q
0x528201010010R
0x538301010011S
0x548401010100T
0x558501010101U
0x568601010110V
0x578701010111W
0x588801011000X
0x598901011001Y
0x5A9001011010Z
0x5B9101011011[
0x5C9201011100\
0x5D9301011101]
0x5E9401011110^
0x5F9501011111_
0x609601100000`
0x619701100001a
0x629801100010b
0x639901100011c
0x6410001100100d
0x6510101100101e
0x6610201100110f
0x6710301100111g
0x6810401101000h
0x6910501101001i
0x6A10601101010j
0x6B10701101011k
0x6C10801101100l
0x6D10901101101m
0x6E11001101110n
0x6F11101101111o
0x7011201110000p
0x7111301110001q
0x7211401110010r
0x7311501110011s
0x7411601110100t
0x7511701110101u
0x7611801110110v
0x7711901110111w
0x7812001111000x
0x7912101111001y
0x7A12201111010z
0x7B12301111011{
0x7C12401111100|
0x7D12501111101}
0x7E12601111110~
0x7F12701111111DEL  删除

3.2 ASCII控制字符 ,0 - 31,共32个。


0~31 之间的ASCII码常用于控制像打印机一样的外围设备。

十进制
DEC
八进制
OCT
十六进制
HEX
二进制
BIN
符号
Symbol
HTML
实体编码
中文解释
Description
00000000000000NUL&#000;空字符
10010100000001SOH&#001;标题开始
20020200000010STX&#002;正文开始
30030300000011ETX&#003;正文结束
40040400000100EOT&#004;传输结束
50050500000101ENQ&#005;询问
60060600000110ACK&#006;收到通知
70070700000111BEL&#007;
80100800001000BS&#008;退格
90110900001001HT&#009;水平制表符
100120A00001010LF&#010;换行键
110130B00001011VT&#011;垂直制表符
120140C00001100FF&#012;换页键
130150D00001101CR&#013;回车键
140160E00001110SO&#014;移出
150170F00001111SI&#015;移入
160201000010000DLE&#016;数据链路转义
170211100010001DC1&#017;设备控制 1
180221200010010DC2&#018;设备控制 2
190231300010011DC3&#019;设备控制 3
200241400010100DC4&#020;设备控制 4
210251500010101NAK&#021;拒绝接收
220261600010110SYN&#022;同步空闲
230271700010111ETB&#023;传输块结束
240301800011000CAN&#024;取消
250311900011001EM&#025;介质中断
260321A00011010SUB&#026;替换
270331B00011011ESC&#027;换码符
280341C00011100FS&#028;文件分隔符
290351D00011101GS&#029;组分隔符
300361E00011110RS&#030;记录分离符
310371F00011111US&#031;单元分隔符

3.3 ASCII可显示字符 ,32 - 127,共96个。

32~127 之间的ASCII码表示的符号,在我们的键盘上都可以被找到。其中:32表示空格,127表示删除命令。 

十进制
DEC
八进制
OCT
十六进制
HEX
二进制
BIN
符号
Symbol
HTML
实体编码
中文解释
Description
320402000100000&#032;空格
330412100100001!&#033;感叹号
340422200100010"&#034;双引号
350432300100011#&#035;井号
360442400100100$&#036;美元符
370452500100101%&#037;百分号
380462600100110&&#038;
390472700100111'&#039;单引号
400502800101000(&#040;左括号
410512900101001)&#041;右括号
420522A00101010*&#042;星号
430532B00101011+&#043;加号
440542C00101100,&#044;逗号
450552D00101101-&#045;连字号或减号
460562E00101110.&#046;句点或小数点
470572F00101111/&#047;斜杠
4806030001100000&#048;0
4906131001100011&#049;1
5006232001100102&#050;2
5106333001100113&#051;3
5206434001101004&#052;4
5306535001101015&#053;5
5406636001101106&#054;6
5506737001101117&#055;7
5607038001110008&#056;8
5707139001110019&#057;9
580723A00111010:&#058;冒号
590733B00111011;&#059;分号
600743C00111100<&#060;小于
610753D00111101=&#061;等号
620763E00111110>&#062;大于
630773F00111111?&#063;问号
641004001000000@&#064;电子邮件符号
651014101000001A&#065;大写字母 A
661024201000010B&#066;大写字母 B
671034301000011C&#067;大写字母 C
681044401000100D&#068;大写字母 D
691054501000101E&#069;大写字母 E
701064601000110F&#070;大写字母 F
711074701000111G&#071;大写字母 G
721104801001000H&#072;大写字母 H
731114901001001I&#073;大写字母 I
741124A01001010J&#074;大写字母 J
751134B01001011K&#075;大写字母 K
761144C01001100L&#076;大写字母 L
771154D01001101M&#077;大写字母 M
781164E01001110N&#078;大写字母 N
791174F01001111O&#079;大写字母 O
801205001010000P&#080;大写字母 P
811215101010001Q&#081;大写字母 Q
821225201010010R&#082;大写字母 R
831235301010011S&#083;大写字母 S
841245401010100T&#084;大写字母 T
851255501010101U&#085;大写字母 U
861265601010110V&#086;大写字母 V
871275701010111W&#087大写字母 W
881305801011000X&#088;大写字母 X
891315901011001Y&#089;大写字母 Y
901325A01011010Z&#090;大写字母 Z
911335B01011011[&#091;左中括号
921345C01011100\&#092;反斜杠
931355D01011101]&#093;右中括号
941365E01011110^&#094;音调符号
951375F01011111_&#095;下划线
961406001100000`&#096;重音符
971416101100001a&#097;小写字母 a
981426201100010b&#098;小写字母 b
991436301100011c&#099;小写字母 c
1001446401100100d&#100;小写字母 d
1011456501100101e&#101;小写字母 e
1021466601100110f&#102;小写字母 f
1031476701100111g&#103;小写字母 g
1041506801101000h&#104;小写字母 h
1051516901101001i&#105;小写字母 i
1061526A01101010j&#106;小写字母 j
1071536B01101011k&#107;小写字母 k
1081546C01101100l&#108;小写字母 l
1091556D01101101m&#109;小写字母 m
1101566E01101110n&#110;小写字母 n
1111576F01101111o&#111;小写字母 o
1121607001110000p&#112;小写字母 p
1131617101110001q&#113;小写字母 q
1141627201110010r&#114;小写字母 r
1151637301110011s&#115;小写字母 s
1161647401110100t&#116;小写字母 t
1171657501110101u&#117;小写字母 u
1181667601110110v&#118;小写字母 v
1191677701110111w&#119;小写字母 w
1201707801111000x&#120;小写字母 x
1211717901111001y&#121;小写字母 y
1221727A01111010z&#122;小写字母 z
1231737B01111011{&#123;左大括号
1241747C01111100|&#124;垂直线
1251757D01111101}&#125;右大括号
1261767E01111110~&#126;波浪号
1271777F01111111&#127;删除

3.4 ASCII扩展字符,128 - 255,共128个。

后128个称为扩展ASCII码。许多基于x86的系统都支持使用扩展(或“高”)ASCII。扩展ASCII码允许将每个字符的第8 位用于确定附加的128 个特殊符号字符、外来语字母和图形符号。

十进制
DEC
八进制
OCT
十六进制
HEX
二进制
BIN
符号
Symbol
HTML
实体编码
中文解释
Description
1282008010000000&#128;欧盟符号
1292018110000001
1302028210000010&#130;单低 9 引号
1312038310000011ƒ&#131;带钩的
拉丁小写字母f
1322048410000100&#132;双低 9 引号
1332058510000101&#133;水平省略号
1342068610000110&#134;剑号
1352078710000111&#135;双剑号
1362108810001000ˆ&#136;修正字符
抑扬音符号
1372118910001001&#137;千分号
1382128A10001010Š&#138;带弯音号的
拉丁大写字母 S
1392138B10001011&#139;左单书名号
1402148C10001100Œ&#140;拉丁大写组合 OE
1412158D10001101
1422168E10001110Ž&#142;带弯音号的
拉丁大写字母 z
1432178F10001111
1442209010010000
1452219110010001&#145;左单引号
1462229210010010&#146;右单引号
1472239310010011&#147;左双引号
1482249410010100&#148;右双引号
1492259510010101&#149;
1502269610010110&#150;半长破折号
1512279710010111&#151;全长破折号
1522309810011000˜&#152;小波浪线
1532319910011001&#153;
1542329A10011010š&#154;带弯音号的
拉丁小写字母 s
1552339B10011011&#155;右单书名号
1562349C10011100œ&#156;拉丁小写组合 oe
1572359D10011101
1582369E10011110ž&#158;带弯音号的
拉丁小写字母 z
1592379F10011111Ÿ&#159;带弯音号的
拉丁大写字母 Y
160240A010100000&#160;
161241A110100001¡&#161;反向感叹号
162242A210100010¢&#162;分币符号
163243A310100011£&#163;英磅符号
164244A410100100¤&#164;
165245A510100101¥&#165;人民币符号
166246A610100110¦&#166;
167247A710100111§&#167;章节符号
168250A810101000¨&#168;通用货币符号
169251A910101001©&#169;版权符号
170252AA10101010ª&#170;阴性顺序
指示符号
171253AB10101011«&#171;左角引号
172254AC10101100¬&#172;
173255AD10101101­&#173;
174256AE10101110®&#174;
175257AF10101111¯&#175;
176260B010110000°&#176;温度符号
177261B110110001±&#177;加/减号
178262B210110010²&#178;上标 2
179263B310110011³&#179;上标 3
180264B410110100´&#180;
181265B510110101µ&#181;微符号
182266B610110110&#182;段落符号,
pilcrow
183267B710110111·&#183;中点
184270B810111000¸&#184;
185271B910111001¹&#185;上标 1
186272BA10111010º&#186;阳性顺序
指示符
187273BB10111011»&#187;右角引号
188274BC10111100¼&#188;分数四分之一
189275BD10111101½&#189;分数二分之一
190276BE10111110¾&#190;
191277BF10111111¿&#191;反向问号
192300C011000000À&#192;带重音符
的大写字母 A
193301C111000001Á&#193;带尖锐重音
的大写字母 A
194302C211000010Â&#194;带音调符号
的大写字母 A
195303C311000011Ã&#195;带代字号
的大写字母 A
196304C411000100Ä&#196;带元音变音
(分音符号)
的大写字母 A
197305C511000101Å&#197;带铃声
的大写字母 A
198306C611000110Æ&#198;大写字母 AE
双重元音
199307C711000111Ç&#199;带变音符号
的大写字母 C
200310C811001000È&#200;带重音符
的大写字母 E
201311C911001001É&#201;带尖锐重音
的大写字母 E
202312CA11001010Ê&#202;带音调符号
的大写字母 E
203313CB11001011Ë&#203;带元音变音
(分音符号)
的大写字母 E
204314CC11001100Ì&#204;带重音符
的大写字母 I
205315CD11001101Í&#205;带尖锐重音
的大写字母 I
206316CE11001110Î&#206;带音调符号
的大写字母 I
207317CF11001111Ï&#207;带元音变音
(分音符号)
的大写字母 I
208320D011010000Ð&#208;
209321D111010001Ñ&#209;带代字号
的大写字母 N
210322D211010010Ò&#210;带重音符
的大写字母 O
211323D311010011Ó&#211;带尖锐重音
的大写字母 O
212324D411010100Ô&#212;带音调符号
的大写字母 O
213325D511010101Õ&#213;带代字号
的大写字母 O
214326D611010110Ö&#214;带元音变音
(分音符号)
的大写字母 O
215327D711010111×&#215;大写字母
OE 连字
216330D811011000Ø&#216;带斜杠
的大写字母 O
217331D911011001Ù&#217;带重音符
的大写字母 U
218332DA11011010Ú&#218;带尖锐重音
的大写字母 U
219333DB11011011Û&#219;带音调符号
的大写字母 U
220334DC11011100Ü&#220;带元音变音
(分音符号)
的大写字母 U
221335DD11011101Ý&#221;带元音变音
(分音符号)
的大写字母 Y
222336DE11011110Þ&#222;
223337DF11011111ß&#223;德语高调
小写字母 s
224340E011100000à&#224;带重音符
的小写字母 a
225341E111100001á&#225;带尖锐重音
的小写字母 a
226342E211100010â&#226;带音调符号
的小写字母 a
227343E311100011ã&#227;带代字号
的小写字母 a
228344E411100100ä&#228;带元音变音
(分音符号)
的小写字母 a
229345E511100101å&#229;带铃声的
小写字母 a
230346E611100110æ&#230;小写字母 ae
双重元音
231347E711100111ç&#231;带变音符号
的小写字母 c
232350E811101000è&#232;带重音符
的小写字母 e
233351E911101001é&#233;带尖锐重音
的小写字母 e
234352EA11101010ê&#234;带音调符号
的小写字母 e
235353EB11101011ë&#235;带元音变音
(分音符号)
的小写字母 e
236354EC11101100ì&#236;带重音符
的小写字母 i
237355ED11101101í&#237;带尖锐重音
的小写字母 i
238356EE11101110î&#238;带音调符号
的小写字母 i
239357EF11101111ï&#239;带元音变音
(分音符号)
的小写字母 i
240360F011110000ð&#240;
241361F111110001ñ&#241;带代字号
的小写字母 n
242362F211110010ò&#242;带重音符
的小写字母 o
243363F311110011ó&#243;带尖锐重音
的小写字母 o
244364F411110100ô&#244;带音调符号
的小写字母 o
245365F511110101õ&#245;带代字号
的小写字母 o
246366F611110110ö&#246;带元音变音
(分音符号)
的小写字母 o
247367F711110111÷&#247;小写字母 oe
连字
248370F811111000ø&#248;带斜杠
的小写字母 o
249371F911111001ù&#249;带重音符
的小写字母 u
250372FA11111010ú&#250;带尖锐重音
的小写字母 u
251373FB11111011û&#251;带音调符号
的小写字母 u
252374FC11111100ü&#252;带元音变音
(分音符号)
的小写字母 u
253375FD11111101ý&#253;带元音变音
(分音符号)
的小写字母 y2
254376FE11111110þ&#254;
255377FF11111111ÿ&#255;

4、ASCII码的英文表格

American Standard Code for Information Interchange (ASCII), (...) is a character encoding based on the English alphabet. (...)
It currently defines codes for 128 characters: 33 are non-printing, mostly obsolete control characters that affect how text is processed, and 95 are printable characters. --Quote from Wikipedia (http://en.wikipedia.org/wiki/Ascii)

4.1 Detailed ASCII TABLE [Non-Printable Characters]

ASCII reserves the first 32 codes (numbers 0-31 decimal) for control characters: codes originally intended not to carry printable information, but rather to control devices (such as printers) that make use of ASCII, or to provide meta-information about data streams such as those stored on magnetic tape. --Quote from Wikipedia (http://en.wikipedia.org/wiki/Ascii)

CHARBINOCTDECHEXHTML NumberHTML NameDESCRIPTION
[NUL]00000000000000&#000; null character
[SOH]00000001001101&#001; start of heading
[STX]00000010002202&#002; start of text
[ETX]00000011003303&#003; end of text
[EOT]00000100004404&#004; end of transmission
[ENQ]00000101005505&#005; enquiry
[ACK]00000110006606&#006; acknowledgment
[BEL]00000111007707&#007; audible bell
[BS]00001000010808&#008; back space
[HT]00001001011909&#009; horizontal tab
[LF]00001010012100A&#010; line feed
[VT]00001011013110B&#011; vertical tab
[FF]00001100014120C&#012; form feed
[CR]00001101015130D&#013; carriage return
[SO]00001110016140E&#014; shift out
[SI]00001111017150F&#015; shift in
[DLE]000100000201610&#016; data link escape
[DC1]000100010211711&#017; device control 1
[DC2]000100100221812&#018; device control 2
[DC3]000100110231913&#019; device control 3
[DC4]000101000242014&#020; device control 4
[NAK]000101010252115&#021; negative acknowledge
[SYN]000101100262216&#022; synchronous idle
[ETB]000101110272317&#023; end of transmit block
[CAN]000110000302418&#024; cancel
[EM]000110010312519&#025; end of medium
[SUB]00011010032261A&#026; substitution
[ESC]00011011033271B&#027; escape
[FS]00011100034281C&#028; file separator
[GS]00011101035291D&#029; group separator
[RS]00011110036301E&#030; record separator
[US]00011111037311F&#031; unit separator

4.2 Detailed ASCII TABLE [Printable Characters] 

Code 32, the "space" character, denotes the space between words, as produced by the space-bar of a keyboard. Codes 33 to 126, known as the printable characters, represent letters, digits, punctuation marks, and a few miscellaneous symbols. --Quote from Wikipedia (http://en.wikipedia.org/wiki/Ascii

CHARBINOCTDECHEXHTML NumberHTML NameDESCRIPTION
001000000403220&#032; space
!001000010413321&#033; exclamation mark
"001000100423422&#034;&quot; double quotes
#001000110433523&#035; number sign
$001001000443624&#036; dollar sign
%001001010453725&#037; percent sign
&001001100463826&#038;&amp; ampersand
'001001110473927&#039; single quote
(001010000504028&#040; opening parenthesis
)001010010514129&#041; closing parenthesis
*00101010052422A&#042; asterisk
+00101011053432B&#043; plus sign
,00101100054442C&#044; comma
-00101101055452D&#045; minus sign, hyphen
.00101110056462E&#046; period, dot
/00101111057472F&#047; division sign, slash
0001100000604830&#048; zero
1001100010614931&#049; one
2001100100625032&#050; two
3001100110635133&#051; three
4001101000645234&#052; four
5001101010655335&#053; five
6001101100665436&#054; six
7001101110675537&#055; seven
8001110000705638&#056; eight
9001110010715739&#057; nine
:00111010072583A&#058; colon
;00111011073593B&#059; semicolon
<00111100074603C&#060;&lt; less than sign
=00111101075613D&#061; equal sign
>00111110076623E&#062;&gt; greater than sign
?00111111077633F&#063; question mark
@010000001006440&#064; at symbol
A010000011016541&#065; capital letter a
B010000101026642&#066; capital letter b
C010000111036743&#067; capital letter c
D010001001046844&#068; capital letter d
E010001011056945&#069; capital letter e
F010001101067046&#070; capital letter f
G010001111077147&#071; capital letter g
H010010001107248&#072; capital letter h
I010010011117349&#073; capital letter i
J01001010112744A&#074; capital letter j
K01001011113754B&#075; capital letter k
L01001100114764C&#076; capital letter l
M01001101115774D&#077; capital letter m
N01001110116784E&#078; capital letter n
O01001111117794F&#079; capital letter o
P010100001208050&#080; capital letter p
Q010100011218151&#081; capital letter q
R010100101228252&#082; capital letter r
S010100111238353&#083; capital letter s
T010101001248454&#084; capital letter t
U010101011258555&#085; capital letter u
V010101101268656&#086; capital letter v
W010101111278757&#087; capital letter w
X010110001308858&#088; capital letter x
Y010110011318959&#089; capital letter y
Z01011010132905A&#090; capital letter z
[01011011133915B&#091; opening bracket
\01011100134925C&#092; backslash
]01011101135935D&#093; closing bracket
^01011110136945E&#094; caret - circumflex
_01011111137955F&#095; underscore
`011000001409660&#096; grave accent
a011000011419761&#097; small letter a
b011000101429862&#098; small letter b
c011000111439963&#099; small letter c
d0110010014410064&#100; small letter d
e0110010114510165&#101; small letter e
f0110011014610266&#102; small letter f
g0110011114710367&#103; small letter g
h0110100015010468&#104; small letter h
i0110100115110569&#105; small letter i
j011010101521066A&#106; small letter j
k011010111531076B&#107; small letter k
l011011001541086C&#108; small letter l
m011011011551096D&#109; small letter m
n011011101561106E&#110; small letter n
o011011111571116F&#111; small letter o
p0111000016011270&#112; small letter p
q0111000116111371&#113; small letter q
r0111001016211472&#114; small letter r
s0111001116311573&#115; small letter s
t0111010016411674&#116; small letter t
u0111010116511775&#117; small letter u
v0111011016611876&#118; small letter v
w0111011116711977&#119; small letter w
x0111100017012078&#120; small letter x
y0111100117112179&#121; small letter y
z011110101721227A&#122; small letter z
{011110111731237B&#123; opening brace
|011111001741247C&#124; vertical bar
}011111011751257D&#125; closing brace
~011111101761267E&#126; equivalency sign, tilde
[DEL]011111111771277F&#127; delete

4.3 Detailed ASCII TABLE [Extended Characters 1] 

The term extended ASCII (or high ASCII) describes eight-bit or larger character encodings that include the standard seven-bit ASCII characters as well as others. --Quote from Wikipedia (http://en.wikipedia.org/wiki/Extended_ASCII

CHARBINOCTDECHEXHTML NumberHTML NameDESCRIPTION
1000000020012880&#128;&euro; euro sign
(n/a)1000000120112981
1000001020213082&#130;&sbquo; single low-9 quotation mark
ƒ1000001120313183&#131;&fnof; latin small letter f with hook
1000010020413284&#132;&bdquo; double low-9 quotation mark
1000010120513385&#133;&hellip; horizontal ellipsis
1000011020613486&#134;&dagger; dagger
1000011120713587&#135;&Dagger; double dagger
ˆ1000100021013688&#136;&circ; modifier letter circumflex accent
1000100121113789&#137;&permil; per mille sign
Š100010102121388A&#138;&Scaron; latin capital letter s with caron
100010112131398B&#139;&lsaquo; single left-pointing angle quotation
Œ100011002141408C&#140;&OElig; latin capital ligature oe
(n/a)100011012151418D
Ž100011102161428E&#142; latin captial letter z with caron
(n/a)100011112171438F
(n/a)1001000022014490
1001000122114591&#145;&lsquo; left single quotation mark
1001001022214692&#146;&rsquo; right single quotation mark
1001001122314793&#147;&ldquo; left double quotation mark
1001010022414894&#148;&rdquo; right double quotation mark
1001010122514995&#149;&bull; bullet
1001011022615096&#150;&ndash; en dash
1001011122715197&#151;&mdash; em dash
˜1001100023015298&#152;&tilde; small tilde
1001100123115399&#153;&trade; trade mark sign
š100110102321549A&#154;&scaron; latin small letter s with caron
100110112331559B&#155;&rsaquo; single right-pointing angle quotation mark
œ100111002341569C&#156;&oelig; latin small ligature oe
(n/a)100111012351579D
ž100111102361589E&#158; latin small letter z with caron
Ÿ100111112371599F&#159;&yuml; latin capital letter y with diaeresis
10100000240160A0&#160;&nbsp; non-breaking space
¡10100001241161A1&#161;&iexcl; inverted exclamation mark
¢10100010242162A2&#162;&cent; cent sign
£10100011243163A3&#163;&pound; pound sign
¤10100100244164A4&#164;&curren; currency sign
¥10100101245165A5&#165;&yen; yen sign
¦10100110246166A6&#166;&brvbar; pipe, broken vertical bar
§10100111247167A7&#167;&sect; section sign
¨10101000250168A8&#168;&uml; spacing diaeresis - umlaut
©10101001251169A9&#169;&copy; copyright sign
ª10101010252170AA&#170;&ordf; feminine ordinal indicator
«10101011253171AB&#171;&laquo; left double angle quotes
¬10101100254172AC&#172;&not; not sign
­10101101255173AD&#173;&shy; soft hyphen
®10101110256174AE&#174;&reg; registered trade mark sign
¯10101111257175AF&#175;&macr; spacing macron - overline
°10110000260176B0&#176;&deg; degree sign
±10110001261177B1&#177;&plusmn; plus-or-minus sign
²10110010262178B2&#178;&sup2; superscript two - squared
³10110011263179B3&#179;&sup3; superscript three - cubed
´10110100264180B4&#180;&acute; acute accent - spacing acute
µ10110101265181B5&#181;&micro; micro sign
10110110266182B6&#182;&para; pilcrow sign - paragraph sign
·10110111267183B7&#183;&middot; middle dot - georgian comma
¸10111000270184B8&#184;&cedil; spacing cedilla
¹10111001271185B9&#185;&sup1; superscript one
º10111010272186BA&#186;&ordm; masculine ordinal indicator
»10111011273187BB&#187;&raquo; right double angle quotes
¼10111100274188BC&#188;&frac14; fraction one quarter
½10111101275189BD&#189;&frac12; fraction one half
¾10111110276190BE&#190;&frac34; fraction three quarters
¿10111111277191BF&#191;&iquest; inverted question mark

4.4 Detailed ASCII TABLE [Extended Characters 2]

CHARBINOCTDECHEXHTML NumberHTML NameDESCRIPTION
À11000000300192C0&#192;&Agrave; latin capital letter a with grave
Á11000001301193C1&#193;&Aacute; latin capital letter a with acute
Â11000010302194C2&#194;&Acirc; latin capital letter a with circumflex
Ã11000011303195C3&#195;&Atilde; latin capital letter a with tilde
Ä11000100304196C4&#196;&Auml; latin capital letter a with diaeresis
Å11000101305197C5&#197;&Aring; latin capital letter a with ring above
Æ11000110306198C6&#198;&AElig; latin capital letter ae
Ç11000111307199C7&#199;&Ccedil; latin capital letter c with cedilla
È11001000310200C8&#200;&Egrave; latin capital letter e with grave
É11001001311201C9&#201;&Eacute; latin capital letter e with acute
Ê11001010312202CA&#202;&Ecirc; latin capital letter e with circumflex
Ë11001011313203CB&#203;&Euml; latin capital letter e with diaeresis
Ì11001100314204CC&#204;&Igrave; latin capital letter i with grave
Í11001101315205CD&#205;&Iacute; latin capital letter i with acute
Î11001110316206CE&#206;&Icirc; latin capital letter i with circumflex
Ï11001111317207CF&#207;&Iuml; latin capital letter i with diaeresis
Ð11010000320208D0&#208;&ETH; latin capital letter eth
Ñ11010001321209D1&#209;&Ntilde; latin capital letter n with tilde
Ò11010010322210D2&#210;&Ograve; latin capital letter o with grave
Ó11010011323211D3&#211;&Oacute; latin capital letter o with acute
Ô11010100324212D4&#212;&Ocirc; latin capital letter o with circumflex
Õ11010101325213D5&#213;&Otilde; latin capital letter o with tilde
Ö11010110326214D6&#214;&Ouml; latin capital letter o with diaeresis
×11010111327215D7&#215;&times; multiplication sign
Ø11011000330216D8&#216;&Oslash; latin capital letter o with slash
Ù11011001331217D9&#217;&Ugrave; latin capital letter u with grave
Ú11011010332218DA&#218;&Uacute; latin capital letter u with acute
Û11011011333219DB&#219;&Ucirc; latin capital letter u with circumflex
Ü11011100334220DC&#220;&Uuml; latin capital letter u with diaeresis
Ý11011101335221DD&#221;&Yacute; latin capital letter y with acute
Þ11011110336222DE&#222;&THORN; latin capital letter thorn
ß11011111337223DF&#223;&szlig; latin small letter sharp s - ess-zed
à11100000340224E0&#224;&agrave; latin small letter a with grave
á11100001341225E1&#225;&aacute; latin small letter a with acute
â11100010342226E2&#226;&acirc; latin small letter a with circumflex
ã11100011343227E3&#227;&atilde; latin small letter a with tilde
ä11100100344228E4&#228;&auml; latin small letter a with diaeresis
å11100101345229E5&#229;&aring; latin small letter a with ring above
æ11100110346230E6&#230;&aelig; latin small letter ae
ç11100111347231E7&#231;&ccedil; latin small letter c with cedilla
è11101000350232E8&#232;&egrave; latin small letter e with grave
é11101001351233E9&#233;&eacute; latin small letter e with acute
ê11101010352234EA&#234;&ecirc; latin small letter e with circumflex
ë11101011353235EB&#235;&euml; latin small letter e with diaeresis
ì11101100354236EC&#236;&igrave; latin small letter i with grave
í11101101355237ED&#237;&iacute; latin small letter i with acute
î11101110356238EE&#238;&icirc; latin small letter i with circumflex
ï11101111357239EF&#239;&iuml; latin small letter i with diaeresis
ð11110000360240F0&#240;&eth; latin small letter eth
ñ11110001361241F1&#241;&ntilde; latin small letter n with tilde
ò11110010362242F2&#242;&ograve; latin small letter o with grave
ó11110011363243F3&#243;&oacute; latin small letter o with acute
ô11110100364244F4&#244;&ocirc; latin small letter o with circumflex
õ11110101365245F5&#245;&otilde; latin small letter o with tilde
ö11110110366246F6&#246;&ouml; latin small letter o with diaeresis
÷11110111367247F7&#247;&divide; division sign
ø11111000370248F8&#248;&oslash; latin small letter o with slash
ù11111001371249F9&#249;&ugrave; latin small letter u with grave
ú11111010372250FA&#250;&uacute; latin small letter u with acute
û11111011373251FB&#251;&ucirc; latin small letter u with circumflex
ü11111100374252FC&#252;&uuml; latin small letter u with diaeresis
ý11111101375253FD&#253;&yacute; latin small letter y with acute
þ11111110376254FE&#254;&thorn; latin small letter thorn
ÿ11111111377255FF&#255;&yuml; latin small letter y with diaeresis

后续

如果你觉得该方法或代码有一点点用处,可以给作者点个赞,赏杯咖啡;╮( ̄▽ ̄)╭
如果你感觉方法或代码不咋地//(ㄒoㄒ)//,就在评论处留言,作者继续改进。o_O???
谢谢各位童鞋们啦( ´ ▽ ` )ノ ( ´ ▽ ` )っ!!!

​​​​​​​

 "六十年来狼藉,东壁打倒西壁。于今收拾归去,依然水连天碧。" 

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐