All data URLs (also known as data URIs) begin with data:, followed by the media type string (which can be omitted) and the data itself.
Below are some examples of data URLs and ways to generate them.
text/plain dataconst data = 'Hello World!'
console.log(`data:text/plain;charset=utf-8,${encodeURIComponent(data)}`)text/plain data, base64 encodingconst data = 'Hello World!'
console.log(`data:text/plain;charset=utf-8;base64,${btoa(unescape(encodeURIComponent(data)))}`) // Browser
console.log(`data:text/plain;charset=utf-8;base64,${Buffer.from(data).toString('base64')}`) // Node.jstext/html data, base64 encodingconst data = '<b>Hello World!</b>'
console.log(`data:text/html;charset=utf-8;base64,${btoa(unescape(encodeURIComponent(data)))}`) // Browser
console.log(`data:text/html;charset=utf-8;base64,${Buffer.from(data).toString('base64')}`) // Node.jsimage/svg+xml data, base64 encodingconst data =
`<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" height="100" width="100">
<circle cx="50" cy="50" r="20" fill="yellow" />
</svg>`
console.log(`data:image/svg+xml;charset=utf-8;base64,${btoa(unescape(encodeURIComponent(data)))}`) // Browser
console.log(`data:image/svg+xml;charset=utf-8;base64,${Buffer.from(data).toString('base64')}`) // Node.jsA poster featuring the "Hello, World!" program in JavaScript programming language.
The Massachusett alphabet chart.
A poster featuring the phonetic transcription of "English" in the International Phonetic Alphabet (IPA).
A poster featuring the ball-and-stick model of the sulflower molecule.
A poster featuring the Standard Model of particle physics.
The ins and outs of data URLs.
How to add npm dependencies from multiple package registries?
How to receive email in Node.js?
Generate data URLs in the browser.
How to list all files recursively within a directory tree in Node.js?
All prices listed are in United States Dollars (USD). Visual representations of products are intended for illustrative purposes. Actual products may exhibit variations in color, texture, or other characteristics inherent to the manufacturing process. The products' design and underlying technology are protected by applicable intellectual property laws. Unauthorized reproduction or distribution is prohibited.