// tools

URL-safe Base64 encoder

URL-safe Base64 (sometimes called Base64Url) is the encoding you want when the result will appear in a URL or HTTP header. It substitutes + → -, / → _, and drops the = padding. JWT signatures, OAuth state parameters, and most modern tokens use this variant.

← all Base64 modes