Skip to main content
->
Runtime Manual
Examples
API reference
//
Deploy
Subhosting
deno.com
Deno APIs
Web APIs
Node APIs
Encoding - Web documentation
Cache
Canvas
Crypto
Encoding
Events
Fetch
File
GPU
I/O
Intl
Messaging
Performance
Platform
Storage
Streams
Temporal
URL
WASM
WebSockets
Workers
view all 148 symbols
Web
Encoding
Functions
f
atob
Decodes a string of data which has been encoded using base-64 encoding. ``` console.log(atob("aGVsbG8gd29ybGQ=")); // outputs 'hello world' ```
f
btoa
Creates a base-64 ASCII encoded string from the input string. ``` console.log(btoa("hello world")); // outputs "aGVsbG8gd29ybGQ=" ```
Interfaces
Document Navigation
Functions
atob
btoa
Interfaces