ASCII - 美国信息交换标准代码

ASCII - 美国信息交换标准代码

1. ASCII Table and Description

ASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation of a character such as 'a' or '@' or an action of some sort. ASCII was developed a long time ago and now the non-printing characters are rarely used for their original purpose. Below is the ASCII character table and this includes descriptions of the first 32 non-printing characters. ASCII was actually designed for use with teletypes and so the descriptions are somewhat obscure. If someone says they want your CV however in ASCII format, all this means is they want 'plain' text with no formatting such as tabs, bold or underscoring - the raw format that any computer can understand. This is usually so they can easily import the file into their own applications without issues. Notepad.exe creates ASCII text, or in MS Word you can save a file as text only.
ASCII 代表美国信息交换标准代码。计算机只能理解数字,因此 ASCII 码是字符的数字表示形式,例如 'a' or '@' 或某种动作。ASCII 是很久以前开发的,现在非印刷字符很少用于其原始用途。下面是 ASCII 字符表,其中包括对前 32 个非打印字符的描述。ASCII 实际上是设计用于电传打字机的,因此描述有些晦涩。如果有人说他们想要 ASCII 格式的 CV,这意味着他们想要的是纯文本,没有任何制表符,粗体或下划线等格式,这是任何计算机都可以理解的原始格式。通常这是为了使他们可以轻松地将文件导入自己的应用程序而不会出现问题。Notepad.exe 创建 ASCII 文本,或者在 MS Word 中,您可以将文件另存为 text only.

ASCII 是基于拉丁字母的一套电脑编码系统。它主要用于显示现代英语和其他西欧语言。它是现今最通用的单字节编码系统,并等同于国际标准 ISO/IEC 646。

ASCII 第一次以规范标准的型态发表是在 1967 年,最后一次更新则是在 1986 年,至今为止共定义了 128 个字符,其中 33 个字符无法显示,95 个可显示的字符,包含用键盘敲下空白键所产生的空白字符也算 1 个可显示字符 (显示为空白)。

在这里插入图片描述

ASCII控制字符 (0 - 31 + 127)。
ASCII可显示字符 (32 - 126)。

计算机用高电平和低电平分别表示 1 和 0。

'0' - 48
'1' - 49

'8' - 56
'9' - 57

'A' - 65
'B' - 66

'Y' - 89
'Z' - 90

'a' - 97
'b' - 98

'y' - 121
'z' - 122

在这里插入图片描述

2. Extended ASCII Codes

扩展 ASCII 码允许将每个字符的第 8 位用于确定附加的 128 个特殊符号字符、外来语字母和图形符号。

在这里插入图片描述

job description,JD:职位描述,职位界定

References

https://www.asciitable.com/
https://www.ascii-code.com/

发布了523 篇原创文章 · 获赞 1850 · 访问量 112万+

猜你喜欢

转载自blog.csdn.net/chengyq116/article/details/104966490