html中的实心三角形和倒三角形符号
我需要在电子邮件中显示以下两个符号,
- 向上实心增量:某物 像▲
- 实线向下增量:▼
但是我不能使用扩展ascii集,因为它会导致生成我的电子邮件模板的unix系统出现问题。
是否有任何 html 代码或任何其他代码可以实现此目的?
I need to display the following two symbols in an email
- solid upward delta : something
like ▲ - solid downward delta : ▼
But i cannot use extended-ascii set, because it causes problems in the unix system where my email templates are generated.
Is there any html code, or any other code to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 unicode 值作为字符实体,如下所示:
这对我有用,但值得进行大量测试,因为不同客户端的支持可能差异很大......
You can try using the unicode values as character entities, as follows:
This works for me, but it's worth testing a lot because support in different clients may be quite variable...