Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

rare symbol

Status
Not open for further replies.

Rydel

Programmer
Feb 5, 2001
376
CZ
I would like to use the ASCII symbol that looks like an arrow (or, more precisely, like a triangle). 1) Do you know this symbol, what's its ASCII code? 2) How would I embed it into the page so that it displays correctly in all browsers? Like &#its_number; ? Thanks in advance! ---
---
 
rydel,

have a look at
they have a link on the right hand side for 'special characters' which will give you a long list.

i don't know if they've got the one you need, but have a look...

hope this helps,

ss
 
Hi Rydel,
I don't remember any character that looks like triangle, but there are some other that may be useful for you. Here's an excellent html entities list with their codes:

Unfortunately, its' not completely cross-browser solution (that's why I always hesitate when try to use it), because most of them aren't shown in NN4.x
I tested it for compatibility I found that it works in IE5 (partially), N6 and Opera6.
 
Unfortunately I couldn't find "my arrow" in those lists of entities. I guess I'll just draw it in Corel Draw, although that would be an awkard solution - it means I will have to redraw the symbol should the font size or font color of the surrounding text change...

P.S. Thanks a lot for the links!
---
---
 
Hi Rydel,

Do you mean the "delta-sign" ?
It's &amp#916;

See for more characters:

(it's an oldie, last updated: March 10 1997 LOL , but still functioning !!)

Hope this helps,
Erik <!-- My sport: Boomerang throwing !!
This year I will participate at the World Championships in Germany. (!! Many Happy Returns !! -->
 
You can get a real arrow symbol by using the Webdings font:
Code:
...
<STYLE TYPE=&quot;text/css&quot; TITLE=&quot;&quot;>
.wd { font-family:WebDings; }
</style>
...
<span class='wd'>&#51;</span> Left Arrow<br>
<span class='wd'>&#52;</span> Right Arrow<br>
<span class='wd'>&#53;</span> Up Arrow<br>
<span class='wd'>&#54;</span> Down Arrow<br>

Tracy Dryden
tracy@bydisn.com

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top