Hi,
The only function I know about that does what you are looking for is FromDigits
. For example
Map[FromDigits[#, 16] &, {"a", "b", "d", "f", "1A2C"}]
I do not know why the function ^^ does not work in your Map
example. I would be also interested in reading the reason.