0

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.

Amanda
  • 2,013
  • 3
  • 24
  • 57

1 Answers1

-2

May be this base64 string /d4OjQAGAgJvToLbkeZ1rQ== is not meaningful. It can't be decoded to regular characters.

Zhu Lance
  • 72
  • 2