in reply to Re^2: Hex Question(s)
in thread Hex Question(s)

Are you sure that hex isn't what you're looking for?
perl -le "print hex('1234') + hex('4321')" 21845 perl -le "print hex('0x1234') + hex('0x4321')" 21845