十進制轉十六進制: (將十進制 1024 轉換為十六進制)
[root@localhost~]# printf "%x\n" 1024 400
十六進制轉十進制: (將十六進制 0x400 轉換為十進制)
[root@localhost~]# printf "%d\n" 0x4001024