为什么下标2在Windows XP上不出现?
我试图在 .NET 应用程序上的静态文本控件中显示 CO2,但在某些 Windows XP 系统上,下标 2 (unicode 2082) 显示为正方形。我怀疑这可能是字体问题,因为它出现在某些 Windows XP 系统上,但并非全部出现。它始终显示在 Windows 7 和 Vista 上。它可用于 MS Gothic 字体。非常欢迎想法。
I am trying to display CO2 in a static text control on a .NET application, but on some Windows XP system, the subscript-2 (unicode 2082) appears as a square). I suspect that it may be a font issue as it appears on some Windows XP systems but not on all. It always displays on Windows 7 and Vista. It's available on MS Gothic font. Ideas very welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MS Sans Serif 不包含 Unicode 字符 U+2082,因此字形只会呈现为正方形。要解决该问题,您需要使用 U+2082 可用的字符。
您可以使用 Windows 的 charmap.exe 实用程序检查所有可用字符。例如,MS UI Gothic 包含此字符,Segoe UI 或 Arial Unicode MS 也包含此字符。
MS Sans Serif doesn't contain Unicode character U+2082, therefore the glyph will only be rendered as a square. To solve the problem you need to use a character where U+2082 is available.
You can check all available characters with Window's charmap.exe utility. MS UI Gothic for instance contains this character, as well as Segoe UI or Arial Unicode MS.