i would like to use the chr function to display abc++ in code block but i do not know how to incorporate the chr function in this block of html code.
<?php
for ($x = 65 ; $x <= 90; $x ++){
echo "<div class='black-box'>
<div class='letter'>
chr($x); <sub class='small'>$x</sub>
</div>
</div>" ;} ?>