| 記号名 | Copyleft Symbol |
| Unicodeバージョン | 11.0 |
| Unicode | U+1F12F |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \1F12F |
| 16進コード | 0x1F12F |
| HTMLコード | 🄯 |
| LaTeX | \reflectbox{\copyright} |
| 記号 | 🄯 |
| URLエンコード(UTF-8パーセント) | %F0%9F%84%AF |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでcopyleft記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |