<?php
//string_substr2.php
$str1 = "&#";
$str2 = "2453";
$str3 = ";";
$str4 ="2494";
echo "Spelling Bengali character: ".$str1.$str2.$str3 ;echo "<br/>";
echo "Spelling Bengali character: ".$str1.$str2.$str3.$str1.$str4.$str3 ;
?>
<html>
<title> string_substr2.php</title>
<body bgcolor="#E7F2F5" text="#000080">
<br/>
<?php
echo "Spelling Bengali character:".'&#2453'; echo '&#2494';
echo"<br/>";
print("Spelling Bengali character:".$str1.$str2.$str3.$str1.$str4.$str3);
?>
</body>
</html>