I have the following command to replace Unicode characters with ASCII ones.
sed -i \'s/Ã/A/g\'
The problem is à isn\'t recognized
Ã
Try setting LANG=C and then run it over the Unicode range: echo "hi ☠ there ☠" | LANG=C sed "s/[\x80-\xFF]//g"
LANG=C
echo "hi ☠ there ☠" | LANG=C sed "s/[\x80-\xFF]//g"