Lets Warm Up

Description : If I told you a word started with 0x70 in hexadecimal, what would it start with in ASCII?

Solution : So this is a conversion question.

In hexadecimal a given word starts with 0x70. We just need to convert this hexadecimal value into ascii value. For this purpose there are multiple approaches either we can use any online converter or we can use bash or python

In bash :: echo -e "\x70"

Our flag is picoCTF{p}

Last updated