I have the following command to replace Unicode characters with ASCII ones.
sed -i \'s/Ã/A/g\'
The problem is à isn\'t recognized
Ã
You can use iconv:
iconv -f utf-8 -t ascii//translit