Lookup
Tools for looking up information about various entities.
Fast, reliable Base64 utilities for everyday development. Encode plain text or files to Base64, decode Base64 back to text or binary, handle URL-safe variants, optional padding, and line wrapping. Works entirely in your browser for privacy.
PNG or JPG for quick preview.+// ↔ -/_). = padding and wrap lines at a fixed column (e.g. 64). data:*;base64, strings—the tool extracts the payload automatically. .b64.txt. - and _. =. The decoder auto-repairs padding, but you can force keep/remove on encode.data:image/png;base64,) for you—paste as is. What is Base64? A binary-to-text encoding that represents bytes using 64 ASCII characters. Common in HTTP, MIME, JWT, and embedding assets.
What is URL-safe Base64? A variant replacing + → - and / → _; padding may be omitted.
Do I need padding? Many parsers accept unpadded strings; some standards still require it. Toggle as needed.
Is processing private? Yes. All work happens locally in your browser; no data is sent anywhere.
"Hello" → SGVsbG8= (standard) / SGVsbG8 (no padding) / SGVsbG8 (URL-safe is identical here)
Data URL: data:image/png;base64,<...> → paste directly into Text Decode or File Decode.