Tuesday, 4 March 2014

String escape sequences in Javascripts

PropertiesDescription
\bBackspace.
\fForm feed.
\nNewline.
\ONul character.
\rCarriage return.
\tHorizontal tab.
\vVertical tab.
\'Single quote or apostrophe.
\"Double quote.
\\Backslash.
\dddThe Latin-1 character specified by the three octal digits between 0 and 377. ie, copyright symbol is \251.
\xddThe Latin-1 character specified by the two hexadecimal digits dd between 00 and FF.  ie, copyright symbol is \xA9.
\uddddThe Unicode character specified by the four hexadecimal digits dddd. ie, copyright symbol is \u00A9.

No comments:

Post a Comment