Given an Integer
, return a String
with the integer formatted as hex in a human readable format,
inclding separating out each set of 4 hex characters with underscores and prepending lending zeros to pad each
set to 4 characters.
ex: formatAndPadAsHex(500000) »> 0007_a120