andrew
andrew

Reputation: 9583

special alt chars in html

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.';&nbsp;'.$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

Answers (1)

The Blue Dog
The Blue Dog

Reputation: 2475

Alt+16 = ► = &#9658;

Alt+30 = ▲ = &#9650;

Your code snippet works fine though.

Upvotes: 3

Related Questions