Prescription Take

Shortcodes

Copy useful codes for prescription take symbol ℞ to use in websites, apps, blogs, and docs.

Unicode
U+211E
HTML Code
℞
HEX Code
℞
CSS Code
\211E
JS/JSON
\u211E
Unix/C/PHP/JAVA
0x211E
URL-encode
%E2%84%9E

Customize Prescription Take

Customize ℞, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Prescription Take Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>℞</span>
HTML Code:
<span>&#8478;</span>
HEX Code:
<span>&#x211E;</span>

Add with CSS

.prescription-take::before {
  content: '\\211E';
}

Set it in JavaScript

document.querySelector('.prescription-take').textContent = '℞';
copied