About 38,600 results
Open links in new tab
  1. base64 - What is base 64 encoding used for? - Stack Overflow

    Oct 14, 2008 · I've heard people talking about "base 64 encoding" here and there. What is it used for?

  2. Encode to Base64 a specific file by Windows Command Line

    Jan 5, 2021 · I need to use a command line on Windows OS to generate the base64 data of a specific file on the screen (without generating a file). I have see that on Unix system is …

  3. c# - How do I decode a base64 encoded string? - Stack Overflow

    I know "Why" is generally irrelevant when supporting legacy stuff, but I need to know... Why was the original string Base64 encoded in the first place?!?? Base64 is usually used to convert …

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

    LookupError: 'base64' is not a text encoding; use codecs.encode() to handle arbitrary codecs How do I go about doing this ? ( using Python 3.4)

  5. How can you encode/decode a string to Base64 in JavaScript?

    You can use btoa() and atob() to convert to and from base64 encoding. There appears to be some confusion in the comments regarding what these functions accept/return, so… btoa() …

  6. 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?

  7. Base64 Encode "string" - command-line Windows? - Stack Overflow

    May 5, 2016 · I have found numerous ways to base64 encode whole files using the command-line on Windows, but I can't seem to find a simple way to batch encode just a "string" using a …

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

    Does Node.js have built-in Base64 encoding yet? The reason why I ask this is that final() from crypto can only output hexadecimal, binary or ASCII data. For example: var cipher = …

  9. 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 …

  10. An efficient way to Base64 encode a byte array? - Stack Overflow

    Base64 is a way to represent bytes in a textual form (as a string). So there is no such thing as a Base64 encoded byte []. You'd have a base64 encoded string, which you could decode back …