| Symbol Name | Copyright Sign |
| Unicode Version | 1.1 |
| Unicode | U+00A9 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \00A9 |
| Hex Code | 0x00A9 |
| HTML Code | © |
| LaTeX | \copyright |
| Symbol | © |
| URL encode (UTF-8 percent) | %C2%A9 |
| Spoken / screen reader name | Copyright Sign |
| UTF-8 | C2 A9 |
| UTF-16 | 00A9 |
| UTF-32 | 000000A9 |
1\documentclass{article}2\usepackage{pifont}3\copyright4\end{document}You can type the copyright sign symbol on most modern devices with the help of following methods:
Alt + 0169 on the numeric keypad, or insert via Character Map.
Option + G on most keyboard layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 00a9, then Enter (layout-dependent).
Long-press the C key or use the symbols keyboard, depending on keyboard layout.
Long-press the C key on supported keyboards, or paste from this page.
1span.copyright::before { content: "\00A9"; }1<span>©</span>Copyright Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u00A9' or String.fromCodePoint(0x00A9) |
| Python | '\N{COPYRIGHT SIGN}' or chr(169) |
| Rust | '\u{00A9}' |
| C / C++ | UTF-8 source or wchar_t with U+00A9 |
| Go | string(rune(0x00A9)) |
| Ruby | "\u00A9" |