Escape raw text into a safe string-literal body (\\, \n, \r, \t, \", \0) for pasting into code, and unescape it back, in your browser. Unescaping also interprets \uXXXX and \xXX. Nothing is ever uploaded.
Where it runs
Your browser
Data retention
None — nothing is uploaded or stored
Maintained by
EasyTechLabs Engineering
🔒 Nothing you paste, type, or drop is uploaded, stored, or logged. All processing happens in your browser and the data never leaves your device — close the tab and it is gone.
Escaping turns raw text into a safe string-literal body: a backslash becomes \\, then newlines, carriage returns, tabs, null bytes, and double quotes become their \-escapes. Unescaping interprets those sequences plus \b \f \v \' \/ and \uXXXX / \xXX; an unknown escape is kept literal. Pure string transforms.
🔒 Escaping turns raw text into a safe string-literal body (\\, \n, \r, \t, \", \0) for pasting into code. Unescaping interprets those sequences plus \uXXXX and \xXX. Runs entirely in your browser; nothing is uploaded.