Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Greek letters don't display anymore when I use fontname-"Symbol" in html/javascript. They work in Microsoft Edge.

  • 5 replies
  • 1 has this problem
  • 69 views
  • Paskiausią atsakymą parašė john02813

more options

I am writing code in javascript for astronomers and it uses symbol font for Greek letters. When I display the report on FireFox browser, the Greek letters do not appear instead they are in a different font. My report display fine with Microsoft Edge but I like FF better.

I am writing code in javascript for astronomers and it uses symbol font for Greek letters. When I display the report on FireFox browser, the Greek letters do not appear instead they are in a different font. My report display fine with Microsoft Edge but I like FF better.

Chosen solution

Fonts like the Symbol font that map on the basic ASCII set may not work in Firefox.

It is best to always use the Unicode representation of characters to avoid font problems because in that case any font that supports those symbols can be used and it works on all platforms if you have a font that covers that Unicode range.

See also:

Skaityti atsakymą kartu su kontekstu 👍 0

All Replies (5)

more options

Type about:preferences#content<enter> in the address bar. Across from fonts and colors, press the Advanced button. On the bottom, turn on Allow Web Sites To Choose Their Own.

Fonts Information - Detected via Flash http://browserspy.dk/fonts-flash.php?detail=1

more options

I followed your instructions but there was no allow web sites instead it said allow pages to choose their own fonts

more options

Chosen Solution

Fonts like the Symbol font that map on the basic ASCII set may not work in Firefox.

It is best to always use the Unicode representation of characters to avoid font problems because in that case any font that supports those symbols can be used and it works on all platforms if you have a font that covers that Unicode range.

See also:

more options

I used the code for Greek letters instead of the letter and using Symbol font. It works ok but now I have to change all the thousands of letters in my data to create that special unicode.

more options

I used javascript/canvas to display my Greek letters. I used if (Mid(AA[x],5,6)=="a"){context.fillText(Left(AA[x],4) + "\u03B1" + Right(AA[x],30),1,12);} In other words I broke up the text data into sections where I could convert the letter in Mid(AA[x],5,6) to a Greek letter when it is time to display on the screen. That way the letter stays normal in the data section.