Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

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

  • 5 réponses
  • 1 a ce problème
  • 69 vues
  • Dernière réponse par 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.

Solution choisie

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:

Lire cette réponse dans son contexte 👍 0

Toutes les réponses (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

Solution choisie

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.