Establecer el valor de char a Java nulo

//Primitives data types aren't nullable. However, you can use the following
  
 c[i]= '\0'; 
OR
 c[i] = 0;
Powerful Polecat