Base64 Encoder | Base64 Encode online | string to base64 | text to base64
Base64 Encoder
Result here
Base64 is a group of binary-to-text encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. Each Base64 digit represents exactly 6 bits of data.
Encode your String into base64 encode online
Base64 Encode php Script
<?php
$string = $_POST['string'];
?>
<div>
<form method="post" action="" >
<br> <textarea cols="45" rows="8" maxlength="65525" type="text" name="string" id="string" value="" required> </textarea>
<br> </br><br> <center><input type="submit" class="btn btn-primary" value="Encode Now" >
</form>
</div>
<br>
<div>
<h4> Result here </h4>
<textarea cols="45" rows="8" maxlength="65525" ><?php echo base64_encode($string);?></textarea>
</div>