About 140,000 results
Open links in new tab
  1. How can you encode/decode a string to Base64 in JavaScript?

    I'd rather use the Base64 encode/decode methods from CryptoJS, the most popular library for standard and secure cryptographic algorithms implemented in JavaScript using best practices and patterns.

  2. How to encode text to base64 in python - Stack Overflow

    Base64 encoding is a process of converting binary data to an ASCII string format by converting that binary data into a 6-bit character representation. The Base64 method of encoding is used when …

  3. How to encode and decode data in base64 and base64URL by using …

    Nov 20, 2019 · Base64 encoding maps the input bytes (8 bit) to a 6 bit representation. 4 base64 characters can encode 4*6=24 bits, which equals 3 bytes. Whenever the number of bytes in your …

  4. How do I encode and decode a base64 string? - Stack Overflow

    Jul 31, 2012 · How do I return a base64 encoded string given a string? How do I decode a base64 encoded string into a string?

  5. How do I base64 encode (decode) in C? - Stack Overflow

    Dec 5, 2008 · I have binary data in an unsigned char variable. I need to convert them to PEM base64 in c. I looked in openssl library but i could not find any function. Does any body have any idea?

  6. How can I do Base64 encoding in Node.js? - Stack Overflow

    It can encode only BMP (Basic Multilingual Plane, U+0000 - U+FFFF). 'base64' - Base64 string encoding. 'binary' - A way of encoding raw binary data into strings by using only the first 8 bits of …

  7. How do you decode Base64 data in Python? - Stack Overflow

    Jul 19, 2021 · You were given a piece of data that was encoded in base64, and you know how to decode the string to get the original data - after that, you still have to understand the format of the …

  8. java - Does anyone know how to decode and encode a string in Base64 ...

    First: Choose an encoding. UTF-8 is generally a good choice; stick to an encoding which will definitely be valid on both sides. It would be rare to use something other than UTF-8 or UTF-16. Transmitting …

  9. Decode base64 data in Java - Stack Overflow

    Jan 22, 2009 · I have an image that is base64 encoded. How do I decode base64 in Java? Hopefully using only the libraries included with Sun Java 6.

  10. encoding - Base64 Encode String in VBScript - Stack Overflow

    Aug 5, 2014 · I was originally using some VBScript code from Antonin Foller: Base64 Encode VBS Function and Base64 Decode VBS Function. Searching Antonin's site, I saw he had some code for …