\n
represents the newline (linefeed)
echo "Co\nding\n";
// output:	    Co
//      	    ding
\t
represents the tab
echo "Co\tding\n";
// output:          Co	ding
by Levani Makhareishvili
2 years ago
PHP
Escape sequances
1
Pro tip: use ```triple backticks around text``` to write in code fences