1. 程式人生 > >perl6 中將 字符串 轉成十六進制

perl6 中將 字符串 轉成十六進制

size output lan org nbsp 十六進制 docs href pack

say Blob.new(abcde.encode(utf8)).unpack("H*");
say ‘0x‘~‘abcde‘.encode(utf8‘).unpack("H*");
 

use experimental :pack;
say Blob.new(1..10).unpack("H*");
# OUTPUT: ?(1 2 3 4 5 6 7 8 9 10)?? 

可以看這裏的鏈接

perl6 中將 字符串 轉成十六進制