Webdings
哈哈 不错!有创意!

解决方案 »

  1.   

    用EditPlus有很多有趣的符号,webding字体。
      

  2.   

    助助兴:
    <span id="word" style="FONT-SIZE: 160px; LEFT: 0px; COLOR: mediumblue; FONT-FAMILY: Webdings;">
    &#252;</span>
    <script>
    var ar = new Array("&#252;","&#254;","&#253;");
    var k = 0;
    function swap() {
      k = (k+1)%3;
      word.innerHTML = ar[k];
      setTimeout("swap()",200);
    }
    swap();
    </script>
      

  3.   

    牛牛牛牛
     问一下map 是一个什么字符
      

  4.   

    <span id="word" style="FONT-SIZE: 160px; LEFT: 0px; COLOR: mediumblue; FONT-FAMILY: Webdings;">
    &#251;</span>
      

  5.   

    FONT-FAMILY: Webdings;
    Webdings是一个字符集,其中包含有很多有趣的符号,你可以这样得到它们<style>
    <!--样式单 -->
    .20{font-size:20;color:#c99c96}
    </style>
    <script>
    document.write("<center>")
    for(i=32;i<256;i++)
     document.write(i+"<font class=20 Face=Webdings>&#"+i+";</font>")
    document.write("</center>")
    </script>