| Previous | Home | Next |
| 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.
| Previous | Home | Next |