Problem
If I told you your grade was 0x70 in hexadecimal, what would it be in ASCII?
Hint
Submit your answer in our competition's flag format. For example, if you answer was 'hello', you would submit 'picoCTF{hello}' as the flag.
Solution
This is a basic introduction to ASCII codes. Using python to find it:
>>>chr(0x70)
>>>'p'
Flag
picoCTF{p}