from int to char c# code example
Example 1: c# char to int
int val = (int)Char.GetNumericValue('8');
Example 2: int to ascii c#
char c = (char)65;
char c = Convert.ToChar(65);
int val = (int)Char.GetNumericValue('8');
char c = (char)65;
char c = Convert.ToChar(65);