next line character in java code example
Example: java string next line
// its \r\n
String a = "Hello, "
String b = "there!"
System.out.println(a+b);//returns Hello, there
System.out.println(a+"\r\n"+b);//returns Hello,
//there! //it will be on the next line!