add one character to string java

Java
char ch='A';
String str="pple";
str= ch+str;   // str will change to "Apple"
Source

Also in Java: