| 記号名 | Prescription Take |
| Unicodeバージョン | 1.1 |
| Unicode | U+211E |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \211E |
| 16進コード | 0x211E |
| HTMLコード | ℞ |
| LaTeX | \textrecipe |
| 記号 | ℞ |
| URLエンコード(UTF-8パーセント) | %E2%84%9E |
| 読み上げ名 / スクリーンリーダー | Prescription Take |
| UTF-8 | E2 84 9E |
| UTF-16 | 211E |
| UTF-32 | 0000211E |
1\documentclass{article}2\usepackage{pifont}3\textrecipe4\end{document}以下の方法でほとんどの最新デバイスでprescription take記号を入力できます:
Alt + 8478 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "prescription", or use Unicode Hex Input.
Ctrl + Shift + U, type 211e, then Enter (layout-dependent).
Paste from this page or use a medical-symbol keyboard shortcut.
Paste from this page or use extended symbols where available.
1span.rx::before { content: "\211E"; }1<span>℞</span>各プログラミング言語におけるPrescription Take記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u211E' or String.fromCodePoint(0x211E) |
| Python | '\N{PRESCRIPTION TAKE}' or chr(8478) |
| Rust | '\u{211E}' |
| C / C++ | UTF-8 source or wchar_t with U+211E |
| Go | string(rune(0x211E)) |
| Ruby | "\u211E" |