Reputation: 9583
I would like to print a solid right arrow and solid down arrow like the ones shown here when typing alt+16 (►)
or alt + 30 (▲)
in html
I tried echoing out all the characters up to \004096
like this
<?php
For ($i=1;$i<16536;$i++){
echo '&#'.$i.'; '.$i.'<br>';
}
?>
I went right through the arabic, chineese, thai etc but I couldn't find them
How might I go about this?
Upvotes: 1
Views: 109
Reputation: 2475
Alt+16 = ► = ►
Alt+30 = ▲ = ▲
Your code snippet works fine though.
Upvotes: 3