如何将指定字体 ASCII 转换为 Unicode?
任何人都可以知道如何将指定的 FONT ASCII 转换为 UNICODE 吗? 我有一种情况,我需要这样做.. 即,如果我指定“Tahoma”作为字体,它应该将 Tahoma 字体中的所有字符 ASCII 转换为 UNICODE 数据。
请帮助我。 我搜索了很多。到处都是普通 ASCII 到 Unicode 的转换,而不是指定字体。
Can anyone have an idea about how to convert specified FONT ASCII to UNICODE?
I have a situation where I need to do it like this..
ie if im specifying "Tahoma" as font it should convert all the character ASCII which is in Tahoma font to UNICODE data.
Please help me in this.
I searched a lot.. Everywhere it is only conversion of normal ASCII to Unicode not with specified font..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Unicode 仅仅代表一个字符,而不是由字体名称定义的字符的样式。
因此,字母 ABC £ $ 等都是 ASCII 和 Unicode 字符。
如果您希望用户能够在 Web 应用程序中输入具有特定字体样式的文本,则需要使用“富文本”或“HTML”编辑控件。
Unicode merely represents a character - not the style of the character, which is defined by the font name.
So, the letters A B C £ $ and suchlike are all ASCII and Unicode characters.
If you want to make it possible for your users to enter text that is styled with a particular font in a Web application, you'll need to use a "rich text" or "HTML" editing control.