About 24,400,000 results
Open links in new tab
  1. algorithm - Why do we use Base64? - Stack Overflow

    Wikipedia says Base64 encoding schemes are commonly used when there is a need to encode binary data that needs be stored and transferred over media that are designed to deal with …

  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 …

  3. Why does a base64 encoded string have an = sign at the end

    I know what base64 encoding is and how to calculate base64 encoding in C#, however I have seen several times that when I convert a string into base64, there is an = at the end. A few …

  4. How to display Base64 images in HTML - Stack Overflow

    Learn how to display Base64 images in HTML with practical examples and solutions discussed by the Stack Overflow community.

  5. How to base64 encode image in linux bash / shell

    I'm trying to base64 encode an image in a shell script and put it into variable:

  6. string - Base64 length calculation? - Stack Overflow

    43 For reference, the Base64 encoder's length formula is as follows: As you said, a Base64 encoder given n bytes of data will produce a string of 4n/3 Base64 characters. Put another …

  7. Base64 decode snippet in C++ - Stack Overflow

    Is there a freely available Base64 decoding code snippet in C++?

  8. Encoding as Base64 in Java - Stack Overflow

    I need to encode some data in the Base64 encoding in Java. How do I do that? What is the name of the class that provides a Base64 encoder? I tried to use the sun.misc.BASE64Encoder …

  9. RegEx to parse or validate Base64 data - Stack Overflow

    Is it possible to use a RegEx to validate, or sanitize Base64 data? That's the simple question, but the factors that drive this question are what make it difficult. I have a Base64 decoder that ca...

  10. java - Does anyone know how to decode and encode a string in …

    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 …