-2

Can you please help me decode this base64 array

CNa1yQEIjrbJAQiYtskBCKK2yQEIp7bJAQiptskBCLmDygE=

Someone already decoded this in this thread, i just want to know how he did this.

i already tried base64_decode() but i got something like ֵɶɶɢ¶É§¶É©¶É¹Ê

From what Arsen says in his thead, its a base64 encoded 35 bit array,

Thank you.

Community
  • 1
  • 1
  • i already tried base64_decode() i got somthing like ֵɎ¶É˜¶É¢¶É§¶É©¶É¹ƒÊ – Mike Filali Oct 13 '15 at 19:24
  • That's right. Nothing says that what you get by decoding has to make sense to *you* — the purpose of that question was precisely to make sense of it. By the way, it's 35 bytes, not bits, there was a typo in that question. – Gilles 'SO- stop being evil' Oct 13 '15 at 20:16

1 Answers1

0

In PHP you can use base64_decode. Also you can decode it with some online tool (like this in encode tab).
Using PHP I get this output: ֵɎ¶É˜¶É¢¶É§¶É©¶É¹ƒÊ

Justinas
  • 41,402
  • 5
  • 66
  • 96