files/en-us/web/api/workerglobalscope/btoa/index.md
{{APIRef("HTML DOM")}}{{AvailableInWorkers("worker")}}
The btoa() method of the {{domxref("WorkerGlobalScope")}} interface creates a {{glossary("Base64")}}-encoded {{Glossary("ASCII")}} string from a binary string (i.e., a string in which each character in the string is treated as a byte of binary data).
You can use this method to encode data which may otherwise cause communication problems, transmit it, then use the {{domxref("WorkerGlobalScope.atob()")}} method to decode the data again. For example, you can encode control characters such as ASCII values 0 through 31.
btoa(stringToEncode)
stringToEncode
An ASCII string containing the Base64 representation of stringToEncode.
InvalidCharacterError {{domxref("DOMException")}}
const encodedData = self.btoa("Hello, world"); // encode a string
const decodedData = self.atob(encodedData); // decode the string
Base64, by design, expects binary data as its input.
In terms of JavaScript strings, this means strings in which the code point of each character occupies only one byte.
So if you pass a string into btoa() containing characters that occupy more than one byte, you will get an error, because this is not considered binary data.
For more information and workarounds see Window.btoa().
{{Specifications}}
{{Compat}}
btoa is available in core-jsdata URLs