So, I've heard you're kinda new to cryptography ?

Basically, in almost every challenge you'll be provided a ciphertext that will look mostly garbage to you, and your goal will be to recover the original message.
Messages are usually encrypted with a well-known cipher, so first step would be to guess the cipher and do some research on how to break it.
Here is a list of useful websites:
- https://www.dcode.fr/en
- https://gchq.github.io/CyberChef/
- https://docs.python.org/3/ (because if you try to solve the crypto challenges in C it will be long and painful)

The flag is the decrypted message put into 42CTF{}.
Ex: 42CTF{Th1s_1s_a_Fl4g}
Good luck !