Using Special Characters in JavaScript : Char « Language Basics « JavaScript DHTML






Using Special Characters in JavaScript

    \b indicates a backspace.

    \f indicates a form feed.

    \n indicates a new line.

    \r indicates a carriage return.

    \t indicates a tab.

    \\ indicates a backslash.

    \' indicates a single quote.

    \" indicates a double quote.

     Special characters do not take effect unless enclosed in a 
     pre-formatted block 

<html>
<head>
  <title>JavaScript Unleashed</title>
</head>
<body>
  <pre>
    <script type="text/javascript">
    <!--
      document.writeln("\tPersonnel");
      document.writeln("Name\t\tAddress");
      document.writeln("Jeff\t\tjeff@company.com");
      document.writeln("Bill\t\tbill@company.com");
      document.writeln("Kim\t\tkim@company.com");
    // -->
    </script>
  </pre></body>
</html>

           
       








Related examples in the same category

1.Displaying a String Containing Escaped Quotations
2.Defining Special Characters as Variables for Later Use
3.Using Special Formatting Characters
4.Character Conversions