<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Decode a Uuencoded String in PHP</title>
</head>
<body>
<?php
// Encoded string
$str = ",2&5L;&\@5V]R;&0A `";
// Decoding the string
echo convert_uudecode($str);
?>
</body>
</html>