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
For a char I would use
myChar = '\'';
The backslash is the standard escape key in both strings and characters, and most people should be able to understand this just fine.