Escape / Unescape Tool
Escape and unescape special characters for various formats
Input
Output
Escape Sequences Reference
HTML/XML:
- & → &
- < → <
- > → >
- " → "
- ' → '
JavaScript:
- \\ → \\\\
- ' → \\'
- " → \\"
- newline → \\n
- tab → \\t
URL:
- space → %20
- ? → %3F
- & → %26
- = → %3D
- / → %2F
