Symbol For Substitute

Shortcodes

Copy useful codes for symbol for substitute ␚ to use in websites, apps, blogs, and docs.

Unicode
U+241A
HTML Code
␚
HEX Code
␚
CSS Code
\241A
JS/JSON
\u241A
Unix/C/PHP/JAVA
0x241A
URL-encode
%E2%90%9A

Customize Symbol For Substitute

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

  

How to use Symbol For Substitute in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>␚</span>
HTML Code:
<span>&#9242;</span>
HEX Code:
<span>&#x241A;</span>

Add with CSS

.symbol-for-substitute::before {
  content: '\\241A';
}

Set it in JavaScript

document.querySelector('.symbol-for-substitute').textContent = '␚';
copied