Unicode contains lots of icons, which can be rendered in the html
using a heximal digit. Eg.
ˣ // Renders a X
Or in :pseudo
element using
::before {
content: "\25BE"; // Renders an arrow down
}
Im however wondering how standard these icons are? Can some of these icons be removed from the standard? So they suddenly won't work anymore?
I was wondering this because a significant amount of these Icons don't work (anymore)?
As seen below, some icons don't work. Why are these not rendering?
<span>♰ renders a cross</span><br/>
<span>☀ renders a sun</span><br/>
<span>⛑ should render a helmet with a white cross</span><br/>
<span>🚸 should render a children crossing sign</span>