The BigInt to convert to a hexadecimal string.
A string that represents the BigInt as a hexadecimal (base 16) number in upper case.
auto x = BigInt("123"); x *= 1000; x += 456; auto xstr = x.toHex(); assert(xstr == "1E240");
See Implementation