Header
{
"alg": "HS256",
"typ": "JWT"
}Dev Utility
Decode JWT header and payload segments locally to inspect claims and token metadata quickly without sending the token to a backend.
This tool decodes the header and payload locally in the browser. It does not validate the signature.
{
"alg": "HS256",
"typ": "JWT"
}{
"sub": "1234567890",
"name": "Jane Doe",
"iat": 1516239022
}No. It decodes the Base64URL header and payload only. Signature verification requires the correct secret or public key and depends on the signing algorithm.
No. Any JWT can be decoded whether or not it is valid. Always verify the signature and token claims in your actual application.
This decoder works locally in the page and does not need a server round trip to parse the token segments.
Calculate Body Mass Index (BMI) and find your ideal weight range using metric or imperial units.
Calculate exact age in years, months, days, weeks, and total days from a birth date to any target date.
Calculate gratuity, full bill total, and the per-person share from a bill amount and tip percentage.
Generate a robots.txt file with user-agent rules, sitemap reference, and optional crawl-delay.
Generate a basic sitemap.xml file from a site URL and a list of paths or full URLs.
Evaluate arithmetic, trig functions, logarithms, factorials, and scientific expressions directly in the browser.