| 記号名 | Sound Recording Copyright |
| Unicodeバージョン | 1.1 |
| Unicode | U+2117 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \2117 |
| 16進コード | 0x2117 |
| HTMLコード | ℗ |
| LaTeX | \textcircledP |
| 記号 | ℗ |
| URLエンコード(UTF-8パーセント) | %E2%84%97 |
| 読み上げ名 / スクリーンリーダー | Sound Recording Copyright |
| UTF-8 | E2 84 97 |
| UTF-16 | 2117 |
| UTF-32 | 00002117 |
1\documentclass{article}2\usepackage{pifont}3\textcircledP4\end{document}以下の方法でほとんどの最新デバイスでsound recording copyright記号を入力できます:
Alt + 8471 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "sound recording copyright", or use Unicode Hex Input.
Ctrl + Shift + U, type 2117, then Enter (layout-dependent).
Paste from this page or use a custom text replacement.
Paste from this page or use extended symbols where available.
1span.phonorecord::before { content: "\2117"; }1<span>℗</span>各プログラミング言語におけるSound Recording Copyright記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2117' or String.fromCodePoint(0x2117) |
| Python | '\N{SOUND RECORDING COPYRIGHT}' or chr(8471) |
| Rust | '\u{2117}' |
| C / C++ | UTF-8 source or wchar_t with U+2117 |
| Go | string(rune(0x2117)) |
| Ruby | "\u2117" |