Addressed To The Subject

Shortcodes

Copy useful codes for addressed to the subject symbol ℁ to use in websites, apps, blogs, and docs.

Unicode
U+2101
HTML Code
℁
HEX Code
℁
CSS Code
\2101
JS/JSON
\u2101
Unix/C/PHP/JAVA
0x2101
URL-encode
%E2%84%81

Customize Addressed To The Subject

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

  

How to use Addressed To The Subject Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>℁</span>
HTML Code:
<span>&#8449;</span>
HEX Code:
<span>&#x2101;</span>

Add with CSS

.addressed-to-the-subject::before {
  content: '\\2101';
}

Set it in JavaScript

document.querySelector('.addressed-to-the-subject').textContent = '℁';
copied