string x = "hello";
There are 5 visible characters in this line, but because of the U+200B that stands between the characters, the number of characters
Console.WriteLine(x.Count());
equals 17.
How do I get the number of visible characters in a string?