http://qs321.pair.com?node_id=11121874


in reply to Re^2: Losing Bits with Pack/Unpack
in thread Losing Bits with Pack/Unpack

Yes unpack is also byte aligned. unpack moves exactly like pack does given the same pattern, except it reads instead of writes. You did lose data with H5, that's why some chars were changed. One way to see that is to try "hehlo" or "hemlo" instead of hello. You'll see that you get the same result, because four bits in the byte are replaced by 0000 when pack was only given 5 hex digits for 3 bytes.