Decode the Base64 string: `U29sdmluZyBjaGFsbGVuZ2VzIGlzIGZ1bg==`
Hint 1: The string ends in “==” which is a hint it’s Base64. Use a Base64 decoding tool or `echo … | base64 -d`.
Hint 2: Decoding should yield a clear text phrase stating something is fun.
Solution:
The string `U29sdmluZyBjaGFsbGVuZ2VzIGlzIGZ1bg==` is Base64. Decoded, it reads: “Solving challenges is fun”.

Leave a Reply