This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JS Strings

From ES2019, line and paragraph separator symbols (\u2028 and \u2029) are allowed in string literals:

let text = "\u2028";
document.getElementById("demo").innerHTML = text;