A JSON Web Token commonly contains three Base64URL-encoded parts: header, payload and signature. The payload is readable; a signed JWT is generally not encrypted.
Decoding is not verification
Anyone holding a JWT can decode its header and payload. That says nothing about whether the signature is valid or whether the issuer should be trusted. Use the JWT decoder to inspect structure and the JWT inspector to reason about claims, but verification belongs to trusted application code with the expected key and algorithm.
Validate more than the signature
Check expiration (exp) and, when used, nbf, issuer (iss) and audience (aud). Reject algorithms your application did not explicitly choose. Never let untrusted token metadata silently redefine verification rules.