generate ascii table

$ cat ascii.sh
dec_count=0

while [ $dec_count -lt 256 ]
do
        echo -e "\x$(echo "ibase=10;obase=16;$dec_count" | bc)\c"
        dec_count=$((dec_count+1))
done

$ bash ascii.sh | hexdump -C
00000000  00 01 02 03 04 05 06 07  08 09 0a 0b 0c 0d 0e 0f  |................|
00000010  10 11 12 13 14 15 16 17  18 19 1a 1b 1c 1d 1e 1f  |................|
00000020  20 21 22 23 24 25 26 27  28 29 2a 2b 2c 2d 2e 2f  | !"#$%&‘()*+,-./|
00000030  30 31 32 33 34 35 36 37  38 39 3a 3b 3c 3d 3e 3f  |0123456789:;<=>?|
00000040  40 41 42 43 44 45 46 47  48 49 4a 4b 4c 4d 4e 4f  |@ABCDEFGHIJKLMNO|
00000050  50 51 52 53 54 55 56 57  58 59 5a 5b 5c 5d 5e 5f  |PQRSTUVWXYZ[\]^_|
00000060  60 61 62 63 64 65 66 67  68 69 6a 6b 6c 6d 6e 6f  |`abcdefghijklmno|
00000070  70 71 72 73 74 75 76 77  78 79 7a 7b 7c 7d 7e 7f  |pqrstuvwxyz{|}~.|
00000080  80 81 82 83 84 85 86 87  88 89 8a 8b 8c 8d 8e 8f  |................|
00000090  90 91 92 93 94 95 96 97  98 99 9a 9b 9c 9d 9e 9f  |................|
000000a0  a0 a1 a2 a3 a4 a5 a6 a7  a8 a9 aa ab ac ad ae af  |................|
000000b0  b0 b1 b2 b3 b4 b5 b6 b7  b8 b9 ba bb bc bd be bf  |................|
000000c0  c0 c1 c2 c3 c4 c5 c6 c7  c8 c9 ca cb cc cd ce cf  |................|
000000d0  d0 d1 d2 d3 d4 d5 d6 d7  d8 d9 da db dc dd de df  |................|
000000e0  e0 e1 e2 e3 e4 e5 e6 e7  e8 e9 ea eb ec ed ee ef  |................|
000000f0  f0 f1 f2 f3 f4 f5 f6 f7  f8 f9 fa fb fc fd fe ff  |................|
00000100

  

$ cat ascii.sh
dec_count=32

while [ $dec_count -lt 128 ]
do
        times=0
        while [ $times -lt 16 ]
        do
                echo -e "\x$(echo "ibase=10;obase=16;$dec_count" | bc)\c"
                times=$((times+1))
        done
        dec_count=$((dec_count+1))
done

$ bash ascii.sh | hexdump -C | cut -c57-60,64 > ascii_table

$ cat ascii_table
20
21  !
22  "
23  #
24  $
25  %
26  &
27  ‘
28  (
29  )
2a  *
2b  +
2c  ,
2d  -
2e  .
2f  /
30  0
31  1
32  2
33  3
34  4
35  5
36  6
37  7
38  8
39  9
3a  :
3b  ;
3c  <
3d  =
3e  >
3f  ?
40  @
41  A
42  B
43  C
44  D
45  E
46  F
47  G
48  H
49  I
4a  J
4b  K
4c  L
4d  M
4e  N
4f  O
50  P
51  Q
52  R
53  S
54  T
55  U
56  V
57  W
58  X
59  Y
5a  Z
5b  [
5c  5d  ]
5e  ^
5f  _
60  `
61  a
62  b
63  c
64  d
65  e
66  f
67  g
68  h
69  i
6a  j
6b  k
6c  l
6d  m
6e  n
6f  o
70  p
71  q
72  r
73  s
74  t
75  u
76  v
77  w
78  x
79  y
7a  z
7b  {
7c  |
7d  }
7e  ~
7f  .

[[email protected] Creates message box.53BA45E9]$

  

generate ascii table,布布扣,bubuko.com

时间: 2024-10-16 09:07:30

generate ascii table的相关文章

ASCII Table

ASCII Table ASCII值 控制字符 ASCII值 控制字符 ASCII值 控制字符 ASCII值 控制字符 0 NUT 32 (space) 64 @ 96 . 1 SOH 33 ! 65 A 97 a 2 STX 34 " 66 B 98 b 3 ETX 35 # 67 C 99 c 4 EOT 36 $ 68 D 100 d 5 ENQ 37 % 69 E 101 e 6 ACK 38 & 70 F 102 f 7 BEL 39 , 71 G 103 g 8 BS 40

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

ASCII Table - ASCII码对照表

ASCII控制字符 二进制 十进制 十六进制 缩写 可以显示的表示法 名称/意义 0000 0000 0 00 NUL ? 空字符(Null) 0000 0001 1 01 SOH ? 标题开始 0000 0010 2 02 STX ? 本文开始 0000 0011 3 03 ETX ? 本文结束 0000 0100 4 04 EOT ? 传输结束 0000 0101 5 05 ENQ ? 请求 0000 0110 6 06 ACK ? 确认回应 0000 0111 7 07 BEL ? 响铃

Ascii Table 不同系统中换行符的区别

Unix系统里,每行结尾只有"<换行>",即"\n":Windows系统里面,每行结尾是"<回 车><换行>",即"\r\n":Mac系统里,每行结尾是"<回车>".一个直接后果是,Unix/Mac系统下的文件在Windows里打 开的话,所有文字会变成一行:而Windows里的文件在Unix/Mac下打开的话,在每行的结尾可能会多出一个^M符号. 所以各系统

ASCII 码对应表

Macron symbol ASCII CODE 238 : HTML entity : [ Home ][ español ] What is my IP address ? your public IP address is: 118.163.184.243 ASCII control characters 00NULL(Null character) 01SOH(Start of Header) 02STX(Start of Text) 03ETX(End of Text) 04EOT(E

Binary to Text (ASCII) Conversion

Binary to Text (ASCII) Conversion Description: Write a function that takes in a binary string and returns the equivalent decoded text (the text is ASCII encoded). Each 8 bits on the binary string represent 1 character on the ASCII table. Note: In the

MIT OS lab1

Lab 1: Booting a PC 1.Introduction Software setup Get jos code: athena% mkdir ~/6.828 athena% cd ~/6.828 athena% add git athena% git clone http://pdos.csail.mit.edu/6.828/2014-jos.git lab Cloning into lab... athena% cd lab Part 1: PC Bootstrap 1.1  

字符串算法

字符串算法 字符串字符判重算法 字符串反转算法 字符串左旋算法 字符串右旋算法 字符串旋转匹配算法 字符串包含算法 字符串删除算法 字符串原地替换算法 字符串压缩算法 字符串变位词检测算法 字符串转整数算法 字符串全排列算法 字符串字典序组合算法 字符串的(括号)生成算法 字符串字符判重算法 给定字符串,确定是否字符串中的所有字符全都是不同的.假设字符集是 ASCII. 1 using System; 2 using System.Collections.Generic; 3 4 namespa

ArcGIS空间分析工具

1. 3D分析 1.1. 3D Features toolset 工具 工具 描述 3D Features toolset (3D 要素工具集) Add Z Information 添加 Z 信息 添加关于具有 Z 值的要素类中的要素的高程属性的信息. Buffer 3D 3D 缓冲 围绕点或线创建三维缓冲区以生成球形或圆柱形的多面体要素. Difference 3D 3D 差异 消除目标要素类中部分与减法要素类中闭合的多面体要素体积重叠的多面体要素. Enclose Multipatch 封闭