| Symbol Name | Copyleft Symbol |
| Unicode Version | 11.0 |
| Unicode | U+1F12F |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \1F12F |
| Hex Code | 0x1F12F |
| HTML Code | 🄯 |
| LaTeX | \reflectbox{\copyright} |
| Symbol | 🄯 |
| URL encode (UTF-8 percent) | %F0%9F%84%AF |
| Spoken / screen reader name | Copyleft Symbol |
| UTF-8 | F0 9F 84 AF |
| UTF-16 | D83C DD2F |
| UTF-32 | 0001F12F |
1\documentclass{article}2\usepackage{pifont}3\reflectbox{\copyright}4\end{document}You can type the copyleft symbol on most modern devices with the help of following methods:
Use Character Map, paste from this page, or enter the code point in apps that support supplementary-plane input.
Edit → Emoji & Symbols, search "copyleft", or use Unicode Hex Input where supported.
Ctrl + Shift + U, type 1f12f, then Enter (layout-dependent).
Paste from this page or use a custom text replacement.
Paste from this page; native keyboard support is limited.
1span.copyleft::before { content: "\1F12F"; }1<span>🄯</span>Copyleft symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u{1F12F}' or String.fromCodePoint(0x1F12F) |
| Python | '\N{COPYLEFT SYMBOL}' or chr(127279) |
| Rust | '\u{1F12F}' |
| C / C++ | UTF-8 source or wchar_t with U+1F12F |
| Go | string(rune(0x1F12F)) |
| Ruby | "\u{1F12F}" |