Encoding
URL & Query String Parser
Parse URLs, inspect their components and edit query parameters.
Development
Parse, edit and rebuild Cookie and Set-Cookie HTTP headers.
Choose whether you are parsing a request Cookie header or a response Set-Cookie header.
Paste the header value without the header name.
Enter a Cookie or Set-Cookie value to inspect and edit its contents.
Local cookie processing
Cookie values are parsed entirely inside your browser and are never uploaded or stored.
About this tool
HTTP cookies store small pieces of state between browser requests. This tool parses request Cookie headers and response Set-Cookie headers, allowing you to inspect values, security attributes and expiration settings.
Features
Frequently asked questions
A server sends Set-Cookie in a response to create or update a cookie. A browser later sends stored cookies back to the server using the Cookie request header.
HttpOnly prevents client-side JavaScript from accessing the cookie through document.cookie, reducing exposure to some cross-site scripting attacks.
Secure instructs browsers to send the cookie only over secure HTTPS connections, except for limited localhost behavior implemented by some browsers.
SameSite controls when cookies are included in cross-site requests. Common values are Strict, Lax and None.
No. Parsing and rebuilding happen entirely inside your browser.
Related tools
Encoding
Parse URLs, inspect their components and edit query parameters.
Development
Search HTTP response codes and understand what each status means.
Encoding
Encode text for URLs or decode percent-encoded values instantly.