Search code examples
htmlunicodeasciinon-ascii-characters

Copyleft symbol


Is there any easy way to print the copyleft symbol?

enter image description here

https://en.wikipedia.org/wiki/Copyleft

For example as simple as:
© ©

It might be:
&anticopy; &anticopy;


Solution

  • What about some CSS ?

    .copyleft {
      display:inline-block;
      transform: rotate(180deg);
    }
    <span class="copyleft">&copy;</span>