What cookie formats are output?
Four formats: document.cookie (browser JavaScript readable), Set-Cookie header (HTTP response format), Netscape cookie file (curl/wget compatible), and JSON Cookie Jar (formatted JSON).
What JSON format is required?
A JSON array where each object must have name and value fields. Optional fields: domain, path, expires, secure, httpOnly, sameSite, priority, maxAge.
Can I upload a file?
Yes. Upload .json files. All processing is local.
What does URL Encode do?
Encodes special characters in output values to ensure safe cookie transmission in HTTP scenarios.
Is my data uploaded?
No. Everything runs locally in your browser.