Related questions
What do < and > stand for?
I know that the entities < and > are used for < and >, but I am curious what these names stand for.
Does < stand for something like "Left tag" or is it just a code?
Adding HTML entities using CSS content
How do you use the CSS content property to add HTML entities?
Using something like this just prints to the screen instead of the non-breaking space:
.breadcrumbs a:before {
content: ' ';
}
Which characters need to be escaped in HTML?
Are they the same as XML, perhaps plus the space one ( )?
I've found some huge lists of HTML escape characters but I don't think they must be escaped. I want to know what needs to be escaped.