Decode JWT online without a server
A JSON Web Token has three Base64URL parts: header, payload, and signature. This debugger pretty-prints claims like sub, iat, and exp locally.
Decode vs verify
Decoding only reads the contents. Verification proves the token was signed by a trusted key. Never trust authorization decisions from decode-only inspection.