Append a single character to a string or char array in java?
You'll want to use the static method Character.toString(char c) to convert the character into a string first. Then you can use the normal string concatenation functions.
1. String otherString = "helen" + character;
2. otherString += character;