To declare a char value in C# we just surround the character with single quotes: \'x\'.
\'x\'
But what is the \"clearest\" way to declare a char value that
I guess it's a matter of personal preference, I find escaping it clearest, eg:
char c = '\'';