0 characters
Base64 — encodes binary data as ASCII text. Used in data URIs, email attachments, auth headers.
JWT — three Base64URL parts: header.payload.signature. Signature can only be verified with the secret key.
URL-safe — replaces + with -, / with _, removes = padding. Safe to use in URLs without encoding.