Contamos con tu ayuda para extender nuestros escritos en referencia a las ciencias de la computación.
Ejemplo 1: nodejs atob
// If you need to convert to Base64 you could do so using Buffer:console.log(Buffer.from('Hello World!').toString('base64'));// Reverse (assuming the content you're decoding is a utf8 string):console.log(Buffer.from(b64Encoded,'base64').toString());
Ejemplo 2: nodejs btoa
Buffer.from('Hello world!','binary').toString('base64')
Ejemplo 3: atob nodejs
(function()"use strict";var atob =require('atob');var b64 ="SGVsbG8sIFdvcmxkIQ==";var bin =atob(b64);console.log(bin);// "Hello, World!"());
Ejemplo 4: atob javascript
Theatob() and btoa() methods allow authors to transform content to and from the base64 encoding.In these APIs,for mnemonic purposes, the "b" can be considered to stand for"binary", and the "a"for"ASCII".In practice, though,for primarily historical reasons, both the input and output of these functions are Unicode strings.From: http://www.w3.org/TR/html/webappapis.html#atob
Aquí puedes ver las reseñas y valoraciones de los lectores
Si te gusta este mundo, tienes la libertad de dejar un post acerca de qué te ha parecido esta reseña.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)