How can I return the Unicode Code Point of a character? For example, if the input is \"A\", then the output should be \"U+0041\". Ideally, a solution should take care of sur
public static string ToCodePointNotation(char c) { return "U+" + ((int)c).ToString("X4"); } Console.WriteLine(ToCodePointNotation('a')); //U+0061