<html>
<style>
#elephant {
font-size: 640px;
margin-top: 100px;
margin-bottom: 100px;
margin-right: 150px;
margin-left: 80px;
}
</style>
<body>
<?php
$str = chr(240) . chr(159) . chr(144) . chr(152);
echo "<span id='elephant'>" . $str . "</span>";
?>
</body>
</html>

🐘