show-special-characters-in-unix-while-using-less-command
To see what that character is:
less -r sourcefile
unix-linux-sed-ascii-control-codes-nonprintable
To sed out the offending control code:
sed 's/'echo "\033"'/ /g'
where \033 is replaced with whatever is actually there.