------------------------------------------------ --> cat 2.txt | sed 's/\302\240/SPECIAL/g' sed: -e expression #1, char 20: Invalid back reference ------------------------------------------------ ########################################### sed 's/\xc2\xa0/SPECIAL/g' 2.txt ########################################### replaces string: # sed -i 's/\xc2\xa0/SPECIAL/g' 2.txt sed -i 's/\xc2\xa0/ /g' 2.txt ###########################################