Unicode characters and Internet Explorer

前端 未结 3 1475
一生所求
一生所求 2020-12-06 02:11

I just built a site that relies on certain Unicode characters like , but why doesn\'t Internet Explorer show these characters?

Is there

3条回答
  •  一向
    一向 (楼主)
    2020-12-06 02:28

    This page helped me figure out which fonts would display correctly for me:

    http://www.fileformat.info/info/unicode/font/fontlist.htm?text=%E2%96%B6+-+Unicode+Character+%27BLACK+RIGHT-POINTING+TRIANGLE%27+%28U%2B25B6%29

    Arial Unicode MS didn't seem available to me in Win XP IE8 on a VMWare virtual machine, but Lucida Sans Unicode appeared to work.

    Then I wrote this SCSS mixin:

    @mixin unicodeFont(){
        font-family: Lucida Sans Unicode, Arial Unicode MS, Arial;
    }
    

提交回复
热议问题