How to get a char from an ASCII Character Code in C# January 18, 2023 by Tarik Two options: char c1 = '\u0001'; char c1 = (char) 1;