Like
.
And what about other symbols?
Like
.
And what about other symbols?
You can specify any unicode character using its character code, eg:
₥ is U+20A5, and you can mark it up like this ₥
Check out this list of unicode characters for more examples.
▼ is ▼
, btw.
Here's the full list for HTML 4 from the standard itself: http://www.w3.org/TR/html4/sgml/entities.html
Otherwise, use the &#xNN;
syntax, where NN
is the hexidecimal representation (can be more than two characters) of the unicode character.
The answer to your title question is probably no. The entire list of HTML4 entities can be found at:
http://www.w3.org/TR/html4/sgml/entities.html
Of course, you're free to use Unicode characters.
OR ▼ ▼
This is how I usually do on Windows. Using Character Map:
U+25BC is the hex number for the unicode character. So either I use ▼
or convert to decimal and use ▼
.