String base16To36(String base16Number) { BigInt decimalValue = BigInt.parse(base16Number, radix: 16); return decimalToBase36(decimalValue); }