on 2017-05-04

CSS - content property use special char

If you want use special char like © in CSS content property

You must use ASCII and show on HEX

And it is &#169

So CSS need

div;before {
    content: "\00A9";
}

Entity Conversion Calculator

This page can help us trans to hex

Refer - CSS Content | CSS-Tricks