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?
You can use:
:%s/^C//g
To get the ^C hold the control key, press V then C (Both while holding the control key) and the ^C will appear. This will find all occurrences and replace them with nothing.
^C
V
C
To remove both ^C and ^B you can do:
^B
:%s/^C\|^B//g