I\'m trying to add content to something before an item using the CSS :before + content: fields. I want to insert a checkmark (☑), BUT if I use that in the content opti
Try this:
#target:before { content: "\2611"; }