how to convert from into to char code example
Example 1: convert char to string
char c = 'a';
String s = Character.toString(c);
Example 2: convert char to char*
char c;
char *pChar = &c;
char c = 'a';
String s = Character.toString(c);
char c;
char *pChar = &c;