Note: I need to clear the previous printed values in the console and need to position my cursor in [row][column]=0
System.out.println("Hello World");
System.out.println("Hello Country");
System.out.println("\033[0;0H"); //need to apply the escape sequence here
System.out.println("Happy:)");
Expected Output:
Happy:)
Hello Country
Am getting this output in this online compiler but not in other compilers