Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Non-Webkit Browsers not showing special characters correctly

I use Google Web Fonts in my project, and I got a strange issue. Everything works fine in Chrome, Mobile Safari, Mobile Chrome, and even Android Browser, but in non-webkit browsers (IE11, Latest FF) special characters (in my case "ğ,Ğ") not showing in standard font.

Here's the font imports:

@import url(https://fonts.googleapis.com/css?family=Allura);

@import url(https://fonts.googleapis.com/css?family=Roboto+Slab);
like image 383
DifferentPseudonym Avatar asked Nov 20 '25 22:11

DifferentPseudonym


1 Answers

As instructed by Google, you need to request for support to “Latin Extended” in order to get all the Turkish letters right. Instead of

@import url(https://fonts.googleapis.com/css?family=Allura);

use

@import url(https://fonts.googleapis.com/css?family=Allura&subset=latin,latin-ext);

Similarly for other fonts.

like image 112
Jukka K. Korpela Avatar answered Nov 23 '25 10:11

Jukka K. Korpela



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!