Text Formatter

Enter text with line breaks and convert breaks to "\n", so all text is in a single line.

Input (text without '\n')


Output (Single line text with '\n')

In the output above all the new lines will be replaced with '\n' after
which the whole text is coverted to one line (also "Aman" will be
replaced as \"Aman\").
Enter text with "\n" to line breaks and convert to breaks, so all text is in a readable format.

Input (Single line text with '\n')


Output (text without '\n')

In the output above all the '\n' will be replaced with new lines after which
extra '\' will also be removed (used for escape characters).




Made By Aman Verma ;)