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

Smartphone icons created by Freepik - Flaticon

JavaScript Strings

The escape sequence \\ inserts a backslash in a string.

let text = "The character \\ is called backslash.";
document.getElementById("demo").innerHTML = text;