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:
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 |
|||
|
|
|
Check that, you can do it through alt characters. ▼ ▲ |
|||||||||
|
|
using the alt characaters on your computer keyboard is a big no no if you are working on a web page for many reasons. #1. encoding of the website, encoding of the database driving the website if any, the codepage of the computer view the website, the codepage your own pc's keyboard is set to.. all that are mostly factors you can not control. So some people will see wonky weird letter combos or sqiggle characters instead of what you intend. For webpages use the html codes for those characters when ever you can. or at least entity encode and make sure you have your code page defined in your html header of your site.. that way people will see what you intend them to. now if you are doing this in word for a document that will be viewed in your own country you are probably safe. But for online things (site coding or data entry) you should avoid this like the plague. |
|||
|
|