Interprets EXPR as a hex string and returns the corresponding value. (To convert strings that might start with either 0, 0x, or 0b, see "oct".) If EXPR is omitted, uses $_.
$_
print hex '0xAf'; # prints '175' print hex 'aF'; # same