Questions tagged [data-uri]

A data URI refers to a distinctive type of URL, characterized by its scheme component being 'data:', and it specifically signifies the representation of a resource rather than just its location.

javascriptHow to specify the character set in a Data URI

In a UTF-8 page, I am implementing the following code: var data = "a b c d e f"; window.location.href = "data:text/csv;charset=utf-8," + encodeURIComponent(data); This code is used to prompt the browser to download and save the text. Although it w ...