Facsimile Sign

Shortcodes

Copy useful codes for facsimile sign ℻ to use in websites, apps, blogs, and docs.

Unicode
U+213B
HTML Code
℻
HTML Entity
&fax;
HEX Code
℻
CSS Code
\213B
JS/JSON
\u213B
Unix/C/PHP/JAVA
0x213B
URL-encode
%E2%85%BB

Customize Facsimile Sign

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

  

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

Insert in HTML

1. Direct symbol:
<span>℻</span>
HTML Code:
<span>&#8507;</span>
HTML Entity:
<span>&fax;</span>
HEX Code:
<span>&#x213B;</span>

Add with CSS

.facsimile-sign::before {
  content: '\\213B';
}

Set it in JavaScript

document.querySelector('.facsimile-sign').textContent = '℻';
copied