Unicode character escape sequences C# with Example
// √ string sqrt = "\\u221A"; string emoji = "\\U0001F601"; // ? string text = "\\u0022Hello World\\u0022"; // "Hello World" string variableWidth = "\\x22Hello World\\x22"; // "Hello World"