in reply to Weird Char's

Open the file in a Hex editor. Find the offending character's Hex value, the use a regex to remove it. For example if the characters hax value is 41 (that is actually an 'A'), the regex would look like this:

s/\x41//g
May the Force be with you