When I decode (using one of the online decoders) a base64 string, the decoded data returns several special chars like sqaure blocks and `”
Share
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.
base64 encodes binary data to visible characters. If you decode it, the string will be turned back into the binary data, where some of the bytes won’t have an ascii/unicode representation and will show as squares. This is normal behaviour. You should decode the data in the program you want to use the data in.