I'm looking for ways to convert a given hex value to its char equivalent. For example, converting hex 61 should result in char "a", hex 62 should convert to char "b", etc. I spent some time with available functions for converting values, e.g. I looked at perlfunc hex, but it is used for converting from hex to dec. I also looked at perlfunc pack but this didn't appear to present the results I'm looking for.