Decode JavaScript escape sequences back into their represented text.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
JavaScript escape sequences are parsed into their represented code units or code points, including hexadecimal, Unicode, and control escapes. The parser treats escape syntax as source notation and does not execute the resulting text.
Hello\nWorld\t!
Hello World !
Source fixtures, serializers, and debugging tools decode JavaScript literals.