OCR Bow Tie

Shortcodes

Copy useful codes for ocr bow tie symbol ⑅ to use in websites, apps, blogs, and docs.

Unicode
U+2445
HTML Code
⑅
HEX Code
⑅
CSS Code
\2445
JS/JSON
\u2445
Unix/C/PHP/JAVA
0x2445
URL-encode
%E2%91%85

Customize OCR Bow Tie

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

  

How to use OCR Bow Tie Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⑅</span>
HTML Code:
<span>&#9285;</span>
HEX Code:
<span>&#x2445;</span>

Add with CSS

.ocr-bow-tie::before {
  content: '\\2445';
}

Set it in JavaScript

document.querySelector('.ocr-bow-tie').textContent = '⑅';
copied