- What data can I embed?
- Text (CSS, HTML, SVG, JavaScript) and file contents. Output is a `data:` URI that you can paste into an `<img src>`, CSS `background: url(...)`, or anywhere a URL is expected.
- Is base64 always needed?
- For binary yes. For text with printable ASCII only, toggle off — URL-encoded (non-base64) data URIs are smaller for text content like SVG.
- How does this compare to external files?
- Smaller HTTP request count (no separate fetch), but base64 overhead (~33% larger). Good for small icons and one-off embeds; bad for large files.
- Do data URIs work in emails?
- Most email clients strip or block them. For email images use attached CID references or hosted URLs. Data URIs are a web-only technique in practice.