in reply to Net::SNMP not retreiving Hex-STRING correctly
@ is ASCII char 0x40. E is ASCII char 0x45. Your data is simply "packed".
unpack('H*', $_) will convert the gobbledygook to "0A401281".