Decode JSON Web Tokens — inspect header, payload & signature
JSON Web Tokens are an open standard for securely transmitting information between parties as a JSON object. Commonly used for authentication and authorization in web applications.
A JWT has three parts: header.payload.signature
This tool decodes JWTs but does NOT verify signatures. JWT payloads are Base64-encoded, not encrypted — anyone can read them. Never put production secrets into online tools.