Telephone Sign

Shortcodes

Copy useful codes for telephone sign ℡ to use in websites, apps, blogs, and docs.

Unicode
U+2121
HTML Code
℡
HEX Code
℡
CSS Code
\2121
JS/JSON
\u2121
Unix/C/PHP/JAVA
0x2121
URL-encode
%E2%84%A1

Customize Telephone Sign

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

  

How to use Telephone Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>℡</span>
HTML Code:
<span>&#8481;</span>
HEX Code:
<span>&#x2121;</span>

Add with CSS

.telephone-sign::before {
  content: '\\2121';
}

Set it in JavaScript

document.querySelector('.telephone-sign').textContent = '℡';
copied