I have the following base 64 string:
/d4OjQAGAgJvToLbkeZ1rQ==
when I try to decode this it gives some non readable characters ýÞoN‚Û‘æu
How can I decode such that the decoded value makes some sense? I want to know the number of characters involved in creating the above base64. I actually want to know the string that created this encoding.
I used javascript's atob
function to decode.