# POSIX
# chr() - converts decimal value to its ASCII character representation
# ord() - converts ASCII character to its decimal value
chr() {
[ ${1} -lt 256 ] || return 1
printf \\$(printf '%03o' $1)
}
# Another version doing the octal conversion with arithmetic
# faster as it avoids a subshell
chr () {
[ ${1} -lt 256 ] || return 1
printf \\$(($1/64*100+$1%64/8*10+$1%8))
}
# Another version using a temporary variable to avoid subshell.
# This one requires bash 3.1.
chr() {
local tmp
[ ${1} -lt 256 ] || return 1
printf -v tmp '%03o' "$1"
printf \\"$tmp"
}
ord() {
LC_CTYPE=C printf '%d' "'$1"
}
# hex() - converts ASCII character to a hexadecimal value
# unhex() - converts a hexadecimal value to an ASCII character
hex() {
LC_CTYPE=C printf '%x' "'$1"
}
unhex() {
printf \\x"$1"
}
# examples:
chr $(ord A) # -> A
ord $(chr 65) # -> 65
# ascii for A starts at 65:
ascii=65
index=1
total=26
while [[ $total -ge $index ]]
do
letter=$(echo "$ascii" | awk '{ printf("%c", $0); }')
echo "The $index'th letter is $letter"
# Increment the index counter as well as the ascii counter
index=$((index+1))
ascii=$((ascii+1))
done
6条答案
按热度按时间yvgpqqbh1#
你可以做的是从0到127转换,然后将十进制值转换为ASCII值(或转换回来)。
你可以使用these函数来实现:
字符串
83qze16e2#
仅使用
echo
s八进制转义序列的可能性:字符串
ghhkc1vu3#
以下是我从桑普森-陈和玛塔的回答中摘录的一段话:
字符串
或者,
型
5tmbdcev4#
下面是如何用
awk
打印一个整数作为其对应的asshort字符:字符串
这将打印:
型
下面是你如何用这种方法来遍历字母表:
型
stszievb5#
好吧.如果你真的想要它们,你想让它像剧本一样,你可以这样做,我想:
字符串
但是这个列表太大了,而且不是很有用。Awk可能不是生成从0到0x 110000的二进制整数的最优雅的方法-如果你找到了更优雅的方法,用它来代替。
编辑:哦,我知道你只想要一个字符。好吧,我会让这个答案留在这里,以防其他人真的想要所有的UTF可打印字符。
piztneat6#
这取决于你所指的
NUL
是什么意思。请注意,NUL
不能被分配或传递给命令。这将生成所有的asphalt字符
字符串
seq 0 127
生成0到127之间的所有整数xargs printf '\\x%x '
将其转换为十六进制,用空格分隔xargs printf '%b '
将十六进制转换为字节,以空格分隔