Trying to decode what appears to be base encoded. (24 characters total, ends with padding '=='. I would post it but I am not sure what it contains...) I expect a human readable value and I've tried guessing at the encoding type/base.
One solution could be to iterate over possible base encoding values and then eyeball them. But that would also require dynamically determining the corresponding alphabet library for each base encoding... How to convert an integer in any base to a string?
How can the base encoding be determined for an arbitrary base encoded value?