What are the HTML entities for up and down triangles?

I've found the outlined versions, but I want the solid ones.

Does anyone know these entities?


You mean ↑ (↑) and ↓ (↓)? All named HTML entities are specified in chapter 24 of the HTML standard. The only thing missing from the page are rendered entities, but you can easily create your own copy with the additional information by applying a simple regexp:

s/<!ENTITY (S+)/<!ENTITY 1 &1;/

Not all entities are named. For many, you need to specify the Unicode code page, either in decimal (▲ ▲, ▼ ▼) or hex (▲ ▲, ▼ ▼).


A little but late, but you can use ▾ ▾, and ▴ ▴, to make both the up and down filled in triangles. I was looking for it myself and the alt codes didn't help so I decided to share this. This same thing works for both left and right as well.


I don't know if I've ever seen what you're looking for. Maybe a better way of doing it would be to create the arrows in Photoshop on a transparent background (.gif or .png format), and then load up the images.

Check that, you can do it through alt characters.
http://www.tedmontgomery.com/tutorial/ALTchrc.html

▼ ▲

链接地址: http://www.djcxy.com/p/15816.html

上一篇: 如何在本地和远程重命名git分支?

下一篇: 上下三角形的HTML实体是什么?