I have a file with some non-printable characters that come up as ^C or ^B, I want to find and replace those characters, how do I go about doing that?
I have a file with some non-printable characters that come up as ^C or ^B, I want to find and replace those characters, how do I go about doing that?
An option not mentioned in other answers.
Delete a specific unicode character with a long hex code, e.g. <200b>:
:%s/\%U200b//g