btoa method (window)
Creates encoded data from the given string, using base-64 encoding.
Use the atob method to decode a base-64 encoded string.
The btoa method uses the A-Z, a-z, 0-9, +, / and = characters for encoding a string.
Syntax:
You can find the related objects in the Supported by objects section below.
Parameters:
Required. String that specifies the data to encode. |
Return value:
Returns the base-64 encoded string.
Example HTML code 1:
This example illustrates the use of the btoa method:
|
||||
<head> <script type="text/javascript"> function EncodeDecode () { input = document.getElementById ("myInput"); encodedData = window.btoa (input.value); alert ("encoded data: " + encodedData); decodedData = window.atob (encodedData); alert ("decoded data: " + decodedData); } </script> </head> <body> <input type="text" id="myInput" value="The text to encode"/> <button onclick="EncodeDecode ();">Encode in base-64!</button> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
Related pages:
External links:
User Contributed Comments