String encoder, string converter and hash generator and hash converter. Get different hashes like MD5, SHA-1, ROT13, Base64, Urlencoded, ... and transform strings or count words and chars in strings.


Encode Base64 - Converter, Encoder, Decoder

Online Base64 Encoder: Encode strings to Base64 format. Easy converting data into Base64 representation.

Base64 encoding can used for binary data encoding in an ASCII string. Base64 is an binary-to-text encoding scheme.

Encode Base64 with PHP:

base64_encode(string $string): string

Encode Base64 with Python:

base64.b64encode(s, altchars=None)

Encode Base64 with Javascript:

var encodedData = btoa(stringToEncode);

Check out the MD5 / SHA-1 Hash Decoder util.