使用 Bash,您可以使用printf
十六进制代码
\xHH byte with hexadecimal value HH (1 to 2 digits)
\uHHHH Unicode (ISO/IEC 10646) character with hex value HHHH (4 digits)
例子
$ printf '\x26'
&
但是,Unicode 示例未按预期打印
$ printf '\u0026'
\u0026
我的 Bash 版本
$ echo $BASH_VERSION
4.1.10(4)-release