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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Greek Characters 3

Status
Not open for further replies.

coldfused

Technical User
Jan 27, 2001
2,442
US
Anyone know of a good resource for Greek Character HTML code?

Any recommendations for cross platform compatibility? Mozilla Firefox has issues as well as Netscape with things that work in IE.

Very frustrating. How do you guys deal with Greek Characters?

----------------------------------------
Florida Web Design
Orlando Web Hosting
Florida Coldfusion Hosting
 
Easy - let's say you want a Greek capital letter alpha (the second item in the list), you would use Α in your code, for example:

Code:
<p>The following is a Greek letter alpha: &#913;</p>

Hope this helps,
Dan

[tt]D'ya think I got where I am today because I dress like Peter Pan here?[/tt]
[banghead]

 

If you're a Windows user, run up charmap. It tells you the names for most characters.

Dan


[tt]D'ya think I got where I am today because I dress like Peter Pan here?[/tt]
[banghead]

 
See Dan that's the thing is I use charmap for most everything but there are certain characters that it doesnt have that I dont know the names too.

For example I was working on a site (re-design) that uses creek characters to display some technical info for their laser products.

Some of the characters they used are not in charmap.

All good though after alot of searching I found them all finally.

Thanks again,
Carl

----------------------------------------
Florida Web Design
Orlando Web Hosting
Florida Coldfusion Hosting
 
The only problem now is trying to figure out the name for the symbol your looking for.
Maybe this will help.

Code:
<table border="1" width="250">
<tr><th>Letter</td><th>Code</td><th>Symbol</td></tr>
<tr><td>Alpha</td><td>&#38;#913;</td><td>&#913;</td></tr>
<tr><td>alpha</td><td>&#38;#945;</td><td>&#945;</td></tr>
<tr><td>Beta</td><td>&#38;#914;</td><td>&#914;</td></tr>
<tr><td>beta</td><td>&#38;#946;</td><td>&#946;</td></tr>
<tr><td>Chi</td><td>&#38;#935;</td><td>&#935;</td></tr>
<tr><td>chi</td><td>&#38;#967;</td><td>&#967;</td></tr>
<tr><td>Delta</td><td>&#38;#916;</td><td>&#916;</td></tr>
<tr><td>delta</td><td>&#38;#948;</td><td>&#948;</td></tr>
<tr><td>Epsilon</td><td>&#38;#917;</td><td>&#917;</td></tr>
<tr><td>epsilon</td><td>&#38;#949;</td><td>&#949;</td></tr>
<tr><td>Eta</td><td>&#38;#919;</td><td>&#919;</td></tr>
<tr><td>eta</td><td>&#38;#951;</td><td>&#951;</td></tr>
<tr><td>Gamma</td><td>&#38;#915;</td><td>&#915;</td></tr>
<tr><td>gamma</td><td>&#38;#947;</td><td>&#947;</td></tr>
<tr><td>Iota</td><td>&#38;#921;</td><td>&#921;</td></tr>
<tr><td>iota</td><td>&#38;#953;</td><td>&#953;</td></tr>
<tr><td>Kappa</td><td>&#38;#922;</td><td>&#922;</td></tr>
<tr><td>kappa</td><td>&#38;#954;</td><td>&#954;</td></tr>
<tr><td>Lambda</td><td>&#38;#923;</td><td>&#923;</td></tr>
<tr><td>lambda</td><td>&#38;#955;</td><td>&#955;</td></tr>
<tr><td>Mu</td><td>&#38;#924;</td><td>&#924;</td></tr>
<tr><td>mu</td><td>&#38;#956;</td><td>&#956;</td></tr>
<tr><td>Nu</td><td>&#38;#925;</td><td>&#925;</td></tr>
<tr><td>nu</td><td>&#38;#957;</td><td>&#957;</td></tr>
<tr><td>Omega</td><td>&#38;#937;</td><td>&#937;</td></tr>
<tr><td>omega</td><td>&#38;#969;</td><td>&#969;</td></tr>
<tr><td>Omicron</td><td>&#38;#927;</td><td>&#927;</td></tr>
<tr><td>omicron</td><td>&#38;#959;</td><td>&#959;</td></tr>
<tr><td>Phi</td><td>&#38;#934;</td><td>&#934;</td></tr>
<tr><td>phi</td><td>&#38;#966;</td><td>&#966;</td></tr>
<tr><td>Pi</td><td>&#38;#928;</td><td>&#928;</td></tr>
<tr><td>pi</td><td>&#38;#960;</td><td>&#960;</td></tr>
<tr><td>piv</td><td>&#38;#982;</td><td>&#982;</td></tr>
<tr><td>Psi</td><td>&#38;#936;</td><td>&#936;</td></tr>
<tr><td>psi</td><td>&#38;#968;</td><td>&#968;</td></tr>
<tr><td>Rho</td><td>&#38;#929;</td><td>&#929;</td></tr>
<tr><td>rho</td><td>&#38;#961;</td><td>&#961;</td></tr>
<tr><td>Sigma</td><td>&#38;#931;</td><td>&#931;</td></tr>
<tr><td>sigma</td><td>&#38;#963;</td><td>&#963;</td></tr>
<tr><td>sigmaf</td><td>&#38;#962;</td><td>&#962;</td></tr>
<tr><td>Tau</td><td>&#38;#932;</td><td>&#932;</td></tr>
<tr><td>tau</td><td>&#38;#964;</td><td>&#964;</td></tr>
<tr><td>Theta</td><td>&#38;#920;</td><td>&#920;</td></tr>
<tr><td>theta</td><td>&#38;#952;</td><td>&#952;</td></tr>
<tr><td>Upsilon</td><td>&#38;#933;</td><td>&#933;</td></tr>
<tr><td>upsilon</td><td>&#38;#965;</td><td>&#965;</td></tr>
<tr><td>Xi</td><td>&#38;#926;</td><td>&#926;</td></tr>
<tr><td>xi</td><td>&#38;#958;</td><td>&#958;</td></tr>
<tr><td>Zeta</td><td>&#38;#918;</td><td>&#918;</td></tr>
<tr><td>zeta</td><td>&#38;#950;</td><td>&#950;</td></tr>
</table>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top