Using middle-dot ASCII with proper support?

后端 未结 3 1990
再見小時候
再見小時候 2021-02-20 00:06

I\'m using the middle dot - · - a lot in my website. The ASCII is ·, which works fine. However, there are still some problems with some users

相关标签:
3条回答
  • 2021-02-20 00:26

    Alt+7 creates this: • You can create the entire ASCII codes from 1 to 255 using Excel. The formula is =Char(x), being x the integer from 1 to 255.

    0 讨论(0)
  • 2021-02-20 00:48

    I can't imagine why a font would lack an ISO-8859-1 character, but you might want to try these:

    • U+2022 BULLET
    ∙ U+2219 BULLET OPERATOR
    
    0 讨论(0)
  • 2021-02-20 00:52

    Whether you use the actual · character or the HTML &#183; entity, make sure ISO-8859-1 is being reported to the browser correctly, either in the charset attribute of the HTTP Content-Type response header, or in a <meta http-equiv="Content-Type" value="text/html; charset=ISO-8859-1"> tag (HTML 4 and earlier) or <meta charset="ISO-8859-1"> tag (HTML 5) inside the HTML itself.

    0 讨论(0)
提交回复
热议问题