I have a lot of this kind of string and I want to find a command to convert it in ascii, I tried with echo -e and od, but it did not work.
echo -e
od
You can use xxd:
xxd
$cat hex.txt 68 65 6c 6c 6f $cat hex.txt | xxd -r -p hello