I am trying to write some documents for the web which have some special characters in them.
There's a few Unicode characters which do not have a "named character reference" but which I would like to include in my web pages. For example, here's a funky arrow:
0000 21FB RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE
which looks like this: ⇻
If I want to make a habit of this, I would need to keep a big list handy which shows all these characters and their equivalent hex codes. It would be much easier if I could simply link to a css or javascript file, and then type an "alias" instead (similar to a named character reference). In other words, I'd like to be able to do this:
<p>Here is my arrow: &my-special-arrow; </p>
Can anyone suggest a way to do this easily?