String Functions - Online String Manipulation Tools

Decode Base64 String Online Tool

Enter the text to be Base64-decoded, and then click "Decode!":



The decoded string:
 

Need to encode a Base64 string?


What Is Base64 Encoding?

In short, Base64-encoding is a way to encode 8 bit character data in a series of 6 bit characters. This was mostly used in transfering of data across 6 or 7 bit connections. The original RFC for Base64 was the Privacy-enhanced Electronic Mail (PEM) RFC 989 but now numerous variations exists, as well as RFC:s, like the RFC 1421, RFC 2045, RFC 3548, RFC 4848 and several other as well.

Since 8 bit characters consist of, well, 8 bits, Base64 encoding groups the characters into groups of three 8 bit characters, yielding 24 bits. Now, the resulting 24 bits are split into four sections of 6 bits instead. Each section of 6 bits is then translated into a new character in the range a-zA-Z0-9+/. 6 bits can contain 2^6 combinations, which is 64, thus the name Base64.

But What About The Equal Sign?

The = character is a padding character added at the end of the encoding in case the input data is not dividable by 3. If the last 24 bits contain only one character, that character is encoded into two characters and the last two spots will be padded with the characters ==. If the last group contains two characters the encoding will have just one = character.

Coding String Functions

What Is Base64 Encoding Used For Now?

Well, it's often used when you already have binary data and you still want to store the data in a 7 bit environment. Say for example that you have an xml, unix config or java property file with settings for an application. Some of those settings may contain characters that aren't allowed in the file, like encrypted passwords, html snippets or other arbitrary data. Base64 encoded data might save you some trouble there. Also, mail and file systems can now cope with 4 byte words containing millions of characters.

When To Use Base64 Encoding

If you would like to obfuscate the data, then Base64 will offer you a very poor security mechanism. Numerous tools are available to decode the data without the need for any key. The data is just in another format. If you need to hide your data, use encryption. The encrypted data is a good candidate to Base64-encode though, if you need to store the encrypted data in a text file.


---
Read more about Base64 in Wikipedia






Privacy Policy Sitemap

Keywords: base 64 decode a string text, tool, on line tool, decoder.
String Manipulation For Programmers
For a comparison of string function notation in different programming languages such as Pascal, VB.NET, Perl, Java, C, C++, Ruby and many more, see the Wikipedia article Comparison Of Programming Languages (String Functions)


Quick Access Toolbar

Reverse A String
Calculate String Length
Word Count Tool
Count The Occurrences Of A Substring Within A String
Convert A String To Uppercase, Lowercase Or Proper Case
HTML-Encode A String
HTML-Decode A String
String To Hex Converter
Hex To String Converter
String To Binary Converter
Binary To String Converter
Decimal To Binary Converter
Binary To Decimal Converter
Decimal To Hex Converter
Hex To Decimal Converter
URL-Encode A String
URL-Decode A String
Convert Hex Values To RGB
Convert RGB Values To Hex
Base64-Encode A String
Base64-Decode A String
Character Encoder / Decoder
Character Encoding Errors Analyzer
Character Encoding Table Index
Did We Miss a Conversion Tool? Let Us Know!
Your Name:

Email Address:

Message:

We won't share your personal info with anyone else without your permission except when applicable by law. We do not sell, communicate or divulge your information to any mailing lists.