About 27,800,000 results
Open links in new tab
  1. What is the real purpose of Base64 encoding? - Stack Overflow

    19 Base64 is a mechanism to enable representing and transferring binary data over mediums that allow only printable characters.It is most popular form of the “Base Encoding”, the others known in use …

  2. 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 textual data. Th...

  3. base64 - What is base 64 encoding used for? - Stack Overflow

    Oct 14, 2008 · Base64 is also used when communicating with government Fiscal Signature printing devices (usually, over serial or parallel ports) to minimize the delay when transferring receipt …

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

    Jul 31, 2012 · How do I encode and decode a base64 string? Asked 13 years, 5 months ago Modified 1 year, 6 months ago Viewed 1.6m times

  5. 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.

  6. How to check whether a string is Base64 encoded or not

    All that you can determine is that the string contains only characters that are valid for a base64 encoded string. It may not be possible to determine that the string is the base64 encoded version of some …

  7. powershell - How to decode a Base64 string? - Stack Overflow

    Mar 14, 2013 · Base64 encoding converts three 8-bit bytes (0-255) into four 6-bit bytes (0-63 aka base64). Each of the four bytes indexes an ASCII string which represents the final output as four 8 …

  8. security - What is the purpose of base 64 encoding and why it used in ...

    Base64 is not encryption -- it's an encoding. It's a way of representing binary data using only printable (text) characters. See this paragraph from the wikipedia page for HTTP Basic Authentication: While …

  9. html - Embedding Base64 Images - Stack Overflow

    Jul 30, 2009 · Purely out of curiosity, which browsers does Base64 image embedding work in? What I'm referring to is this. I realize it's not usually a good solution for most things, as it increases the page size

  10. Base64 encoding and decoding in client-side Javascript

    May 12, 2010 · Are there any methods in JavaScript that could be used to encode and decode a string using base64 encoding?