And for those who are looking for when you have to concatenate a char to a String rather than a String to another String as given below.
char ch = 'a';
String otherstring = "helen";
// do this
otherstring = otherstring + "" + ch;
System.out.println(otherstring);
// output : helena