Escape Encode / Decode
Convert between URL percent-encoding and escape sequences
How to use
Convert between URL percent-encoding and escape sequences. Steps:
- Enter the text to escape in the Input box.
- Click Encode to get
%XXform via escape. - Click Decode to restore the escape sequence to original text.
- Use Clear to reset the boxes.
Tip: escape is deprecated; use it only for legacy data. For new work, use the URL tool.
FAQ
Is escape not deprecated?
Yes. New code should use encodeURIComponent. It is kept here only to handle legacy data from older systems.