Points: 50
General Skills
If I told you your grade was 0x41 in hexadecimal, what would it be in ASCII?
Submit your answer in our competition's flag format. For example, if you answer was 'hello', you would submit 'picoCTF{hello}' as the flag.
We can use Python to get the ASCII value of 0x41.
>>> chr(0x41)
'A'
picoCTF{A}