Unicode character escape sequences C# with Example



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" 

0 Comment's

Comment Form

Submit Comment