Does this JWT decoder verify the signature?
No. It decodes the header and payload so you can inspect claims. It does not verify signatures, secrets, public keys, issuer trust, or audience enforcement.
Is it safe to paste a JWT?
JWTs can contain user IDs, emails, scopes, tenant IDs, or session hints. Decode only tokens you are allowed to inspect, and avoid pasting production credentials into shared sessions.
What JWT claims should I check first?
Start with iss, sub, aud, exp, nbf, iat, scope or scp, alg, and kid. Those usually explain issuer, subject, audience, time validity, permissions, and signing-key hints.
Do utility tools upload my payload?
Use the page notes for each tool. Browser-side utilities can generate outputs locally, but the final file or code may still reveal whatever you encode or share.
Why should I test the generated output?
Scanners, printers, file viewers, apps, and platform previews can behave differently, so test the exact downloaded output before using it publicly.
Why might another generator show a different output?
Different tools may use different rounding, assumptions, default rates, methods, formulas, or input timing. Compare the visible method and inputs before relying on the output.