public class Hello { public static void main(String[ ] args) { String s = new String("Hello"); s.replace( ' H ' , ' j ' ); System.out.print(s); } }