JWT Decoder

0 Chars
0 Chars
0 Chars
About JWT

JWT (JSON Web Token) is an open standard for securely transmitting information between web applications. It consists of three parts: Header, Payload, and Signature, separated by dots.

  • πŸ“Œ Header: Contains the token type and signing algorithm (e.g., HMAC, RSA).
  • πŸ“Œ Payload: Contains claims such as user ID, expiration time, etc.
  • πŸ“Œ Signature: Used to verify that the message has not been tampered with (this tool does not verify signatures).
  • πŸ” JWT uses Base64URL encoding (replaces + and / with - and _, and removes padding =).
  • πŸ’‘ Enter a valid JWT token and click "Decode" to view the raw JSON of the Header and Payload.