The question is quite simple; if I have the following string:
string str = "\0test";
How can I display the character "\0" in a label in WinForms, where it seems to cut off all characters after the "\0", or more generally in a Console output, where it seems to insert space instead of the "\0"?
Console.WriteLine(str);
label.Text = str;