Unicode Characters in Visual Studio
I came across a problem with Unicode characters in a dataset I was parsing in Visual Studio Code. A quick Google brought up this post from 2012, Finding Those Pesky Unicode Characters in Visual Studio.
The fix was to search using the regular expression [^\x00-\x7f] and remove the Unicode characters.
The original solution came from Aaron Jensen back in 2011.