Is there "oldline" character in Java?

java, newline, terminal

Solution

ASCII doesn't standardize a "line starve" or reverse line feed control character. Some character based terminals/terminal emulators recognize control code sequences that move the cursor up a line; these aren't Java-specific, and depend on your OS and configuration. Here's a starting point if you're using Linux: http://www.kernel.org/doc/man-pages/online/pages/man4/console_codes.4.html

Problem

Is there exist the opposite to the newline `'\n'` character in Java which will move back to the previous line in the console?

Original source