Zickty



icon

Encode Text into Base64 Online Tool

A tool for encoding text into Base64 encoding.






Overview

Converts text into Base64 encoded text. The binary encoding of the text is converted into Base64 format. As the data was already text to begin with, this conversion is a little redundant since the main usage of Base64 is to allow storage of binary data as text. Converting text to Base64 can be useful to visually obscure text while still allowing for easy decoding. Base64 is easily reversed and this obscuring is not cryptographically secure.

How to Use

1. Enter plain text into the input box.

2. Press the "Encode" button and the bytes of the text will be converted into Base64 encoded text characters.

3. Pressing the "Decode" button will convert Base64 encoded text in the output box back to the input box

About Base64

Base64 is a is a widely used method for converting binary data into a text format. Base64 converts binary bits into a set of 64 characters consisting of the 26 uppercase letters, the 26 lowercase letters, the 10 numeric digits and the characters + and /. An additional character = is used to indicate the presence of padding bits.