There is byte array:
{ 0, 0, 0, 0, 52, 246, 141, 6 }
It somehow represented as a string:
AAAAADT4RyQ=
How to do it? What is the encoder?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Looks like base64 encoding to me:
That doesn’t give quite the results you’re expecting though – it gives
AAAAADT2jQY=.The base64 string you’ve given corresponds to
{ 0, 0, 0, 0, 52, 248, 71, 36 }– without more information about where this data is coming from, or how you got the expected value, it’s impossible to explain the discrepancy.