PHP Source:
<!DOCTYPE html>
<html>
<body>

<?php
$str = "Hello world!";
// Encode the string
$encodeString = convert_uuencode($str);
echo $encodeString . "<br>";

// Decode the string
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>


</body>
</html>
Result:
Show PHP - © w3schools.com
Privacy Policy