- Which escape formats are supported?
- JavaScript, JSON, HTML, SQL, Python, Go, Shell, and CSS. Each has its own escape rules; the tool picks the right one based on your target.
- Does it escape or unescape?
- Both — toggle direction. Useful for inspecting escape sequences in logs (unescape) or generating embedded literals in source code (escape).
- What's the difference between JS and JSON escaping?
- JSON is stricter: it requires double quotes, forbids trailing commas, and escapes a smaller character set. JS allows single quotes and a few more unescaped characters (forward slashes, single quotes).
- Are unicode characters handled?
- Yes — `\uXXXX` and `\x##` escape sequences are produced or consumed based on the target. ASCII-safe mode escapes all non-printable and non-ASCII characters.