Mobile app version of vmapp.org
Login or Join
Frith620

: HTML Character Entities/Special characters with crossbrowser/crossplatform support? I used some good looking ones from http://dev.w3.org/html5/html-author/charref on my site but I just noticed that they

@Frith620

Posted in: #Code #CrossBrowser #CrossPlatform #Html

I used some good looking ones from dev.w3.org/html5/html-author/charref on my site but I just noticed that they don't show on mobile browsers of Android.

For example:


⪦ ⪦
⪢ ⪢


Which special characters and HTML Character Codes (entities) have crossbrowser/crossplatform support?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Frith620

2 Comments

Sorted by latest first Latest Oldest Best

 

@Kaufman445

Using these two web resources find out about browser support for any html character entity.
Like if you need to choose between ≈ ≈ ≈ for ≈
code.google.com/p/doctype-mirror/wiki/AsympCharacterEntity dev.w3.org/html5/html-author/charref

10% popularity Vote Up Vote Down


 

@Welton855

The named character references added in HTML5 do not work cross-browser, though the support is relatively widespread now. Generally, there is hardly ever any reason to use them (as opposite to references defined in HTML 4.1, which are well supported).

Quite independently of this, the characters themselves (no matter whether entered as such, as named references, or as numeric references) need to exist in some font in the system and the browser needs to know how to find them. There is no list of characters with crossbrowser/crossplatform support, since each system has its own fonts and many browsers have specialities in using fonts.

To make characters appear in (almost) all systems, you would need to use web fonts (downloadable fonts), which come with problems of their own. See my Guide to using special characters in HTML.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme