alert('Oh shit !!!! Javascript is disabled!!!! ');


Blog Archive

Special Character in JavaScript

Special Character in JavaScript

Code

Output

\' single quote
\" double quote
\\ backslash
\n new line
\r carriage return
\t tab
\b backspace
\f form feed


Step 1. Written below code in your application.

<html>
<head>
<script type="text/javascript">
var txt="I am working in \"r4r\".";
document.write(txt);
</script>
</head>
<body>

</body>
</html>

Step 2. Run the Application.