I want to see, Hello {} in the output, but the following gives compiler errors
Console.WriteLine("{0} \{\}", "Hello");
You need to use double parenthesis.
Something like
string s = String.Format("{0} {{}}", "Hello"); 
First question at
 
    
    Using double brackets. See How to escape braces (curly brackets) in a format string in .NET for example.
