I have a collection of HTML documents that contain basic text encoded in Windows-1252, but scattered throughout the content are various instances of span
elements styled with font-family: Symbol
.
For instance:
<span style='font-family:Symbol'>Ñ</span>
In browsers, this appears as the Greek letter delta - Δ.
I researched and discovered that utilizing the Symbol
font may display differently based on different systems since it's not a universally defined font.
Is this information accurate? Is using the Symbol
font considered "risky"?
If it is indeed risky, is there a reliable method to convert these symbols styled with the Symbol
font to their counterparts in Windows-1252 on my own system?