Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Copyleft symbol

Tags:

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;

like image 757
Evhz Avatar asked May 07 '16 11:05

Evhz


People also ask

What is an example of copyleft?

Copyleft is a term, usually referring to a license, used to indicate that such license requires that redistribution of said work is subject to the same license as the original. Examples of copyleft licenses are the GNU GPL (for software) and the Creative Commons SA (Share Alike) licenses (for works of art).

What does copyleft mean?

Copyleft is the idea and the specific stipulation when distributing software that the user will be able to copy it freely, examine and modify the source code, and redistribute the software to others (free or priced) as long as the redistributed software is also passed along with the copyleft stipulation.

Why is it called copyleft?

Proprietary software developers use copyright to take away the users' freedom; we use copyright to guarantee their freedom. That's why we reverse the name, changing “copyright” into “copyleft.” Copyleft is a way of using the copyright on the program.

Is copyleft a law?

Copyleft is a specific license granted under copyright law, and the international statutes governing copyright law are the mechanisms that establish and protect copyleft.


1 Answers

What about some CSS ?

.copyleft {
  display:inline-block;
  transform: rotate(180deg);
}
<span class="copyleft">&copy;</span>
like image 186
Marcos Pérez Gude Avatar answered Sep 18 '22 09:09

Marcos Pérez Gude