unsigned char to int c code example Example 1: c convert char to int int i = (int)(c - '0'); Example 2: c char to int int i; char c = 'A'; i = (int)c;