Encoders & Crypto
Data-URL-converter
Gratis data-URL-converter. Codeer elk bestand als base64 data-URL voor inline-insluiting, of decodeer een data-URL terug naar een bestand. Browsergebaseerd, geen upload.
Redactionele opmerking
Understanding · Files, smuggled into a string.
Dit uitgebreide hoofdstuk is momenteel alleen in het Engels beschikbaar. De conversietool hierboven werkt in jouw taal; de lange uitleg is nog niet vertaald.
Veelgestelde vragen
Quick answers.
›What is a Data URL?
A Data URL is a scheme used to embed data in-line in documents, formatted as `data:[mediatype][;base64],data`. It is commonly used for small icons or CSS assets to reduce external dependencies.
›Are my files secure?
Yes. The encoding and decoding happen entirely within your browser's memory. No file data is sent to our servers or stored permanently.
›When should I avoid Data URLs?
Base64 encoding increases file size by approximately 33% compared to binary files. Large files should be kept as separate assets to avoid slowing down page renders and to allow for browser caching.
›How do I use the output in CSS?
Copy the generated string and paste it into a `url()` function, such as `background-image: url('data:image/png;base64,...');`. This embeds the image directly within your stylesheet.
Mensen zoeken ook naar
Use with
What people reach for next.
Gerelateerde tools
More in this room.
- Base64 Coderen / DecoderenCodeer en decodeer Base64 — Unicode-veilig.
- URL Coderen / DecoderenPercent-codeer en decodeer URL's veilig.
- HTML Entiteiten Coderen / DecoderenOntsnap of herstel HTML speciale tekens.
- Hex / Binair / Octaal OmzetterConverteer tussen hex, binair, octaal en decimaal.
- Base32 Encoderen & DecoderenRFC 4648 Base32 — beide richtingen, in de browser.
- ASCII / Unicode ConverterInspecteer elk codepunt van elke string.