形状列表及其转义代码

发布于 2024-11-30 02:05:59 字数 94 浏览 2 评论 0原文

我需要一个代表形状的 HTML 转义代码列表。我希望代码与所有浏览器兼容。例如,我想要一个转义代码在页面上显示一个正方形,在另一个页面上我想要一个三角形。据我所知这是可能的。

I need a list of HTML escaped codes that represents shapes. I want the codes to be compatible with all browsers. For example, I want an escaped code to show a square on the page, in another page I want a triangle. From what I've heard it's possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风尘浪孓 2024-12-07 02:05:59

如果您谈论的是看起来像基本几何形状的字符,请尝试在 Windows 上打开charmap,如果您使用的是不同的操作系统,则尝试打开类似的字符映射。只要您的 HTML 使用 Unicode 编码(如 UTF-8),您就可以直接在源代码中使用这些字符。如果您的代码是用 ASCII 之类的语言编写的,那么您可以将字符的数值与数字实体一起使用,如下所示:(将呈现▲)。请记住,只有当您用来显示该字符的字体包含该字符时,该字符才会呈现。

If you're talking about characters that look like basic geometrical shapes, try opening charmap on Windows or a similar if you're on a different OS. As long as your HTML is using a Unicode encoding (like UTF-8), you can simply use those characters directly in your source code. If your code is written in something like ASCII, then you can use the numeric value of the character with a numeric entity, like this: (will render a ▲). Keep in mind that the character will only render if the font you're using to display it contains the character.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文