Base64URL Decode

Encode and decode using URL-safe Base64 (RFC 4648 §5), which replaces + with - and / with _, and omits padding. Used in JWT, OAuth tokens, and URL parameters.

Standard vs URL-safe Base64
FeatureStandard (RFC 4648 §4)URL-safe (RFC 4648 §5)
Character 62+-
Character 63/_
PaddingRequired (=)Omitted
URL-safeNo (+ and / need encoding)Yes
Use caseMIME, email, generalJWT, OAuth, URL params
All processing is done locally in your browser.