Top "Base64" questions

Base64 is a set of encoding schemes that represent binary data in an ASCII string format.

Why does base64 encoding require padding if the input length is not divisible by 3?

What is the purpose of padding in base64 encoding. The following is the extract from wikipedia: "An additional pad character …

encoding base64 padding decoding
Convert HTML to data:text/html link using JavaScript

Here's my HTML: <a>View it in your browser</a> <div id="html"> <…

javascript html url base64 data-uri
Angular 2 encode image to base64

I want to encode the uploaded files to base64 so that I can pass them to the request. The problem …

file angular typescript base64 encode
Apache Commons Codec with Android: could not find method

Today I tried including the apache.commons.codec package in my Android application and couldn't get it running. Android could …

android base64 apache-commons-codec
Binary to Base64 (Delphi)

How can I get content of an exe file and convert it into Base64 encoding ? Edit I use D2010 and …

delphi encoding delphi-2010 base64
Retrieving binary file content using Javascript, base64 encode it and reverse-decode it using Python

I'm trying to download a binary file using XMLHttpRequest (using a recent Webkit) and base64-encode its contents using this …

javascript python encoding xmlhttprequest base64
Decoding Base64 Images

I have recently found a file on the web, and I really need the original url to it, but it's …

url base64 decode
What's the difference between UTF8/UTF16 and Base64 in terms of encoding

In. c# We can use below classes to do encoding: System.Text.Encoding.UTF8 System.Text.Encoding.UTF16 System.Text.…

c# encoding utf-8 base64
Converting NSData to base64

How to convert NSData to base64. I have NSData and want to convert into base64 how can I do this?

iphone base64 nsdata
How to encode media in base64 given URL in Ruby

I'm trying to upload an image to PingFM. Their documentation says: media – base64 encoded media data. I can access this …

ruby-on-rails ruby base64 encode activesupport