Base64 Decoder | base64 Decode | base64 to string | base64 to text
Base64 Decoder
Result here
Online Base64 Decoder Tool | Base64 Decode online | base64 decode | base64 to string converter , php base64 decode
Base64 decoder 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="Decode Now" >
</form>
</div>
<br>
<div>
<h4> Result here </h4>
<textarea cols="45" rows="8" maxlength="65525" ><?php echo base64_decode($string);?></textarea>
</div>