write up ctf by ariafatah
If I told you a word started with 0x70 in hexadecimal, what would it start with in ASCII?
ipython3 -c "0x70" # DEC # Out[1]: 112 ipython3 -c "chr(0x70)" # char # Out[1]: 'p'
picoCTF{p}