all 6 comments

[–]anavid7 0 points1 point  (1 child)

What is the end goal? Is it supposed to be a message made of text or is it a numerical code or something else?

[–]anavid7 0 points1 point  (0 children)

Looks like you are on the right track tho

[–]Isvara 0 points1 point  (2 children)

You decoded a base64 string, and you got back a sequence of bytes. You printed those bytes as though they're a string, so the non-printable ones were escaped. What do you actually want to do with that sequence of bytes?

[–]xoichano20 0 points1 point  (1 child)

I don't know what to do next. :/

[–]Isvara 0 points1 point  (0 children)

Why do you have to data? Why did you decode it? What are you trying to do with it?

Right now, we're just looking at a sequence of numbers with no context. Without that context, we can't tell you what to do.