I'm attempting to create a style that will display an arrow in place of the li element.
$("html > head").append("<style id=styles>div#panel { position: absolute; border-radius: 3px; font-family:'Arial Black'; font-size:13px; }\n\r" +
"ul li:before { content: \"\00BB \8680\"; }"
+ "</style>\n\r");
Instead of seeing an arrow, I'm only getting a jumble of characters displayed. The page charset is utf-8.
I've reviewed these resources: http://www.w3schools.com/charsets/ref_utf_arrows.asp
Any suggestions on how to resolve this issue?