Symbol For Escape

Shortcodes

Copy useful codes for symbol for escape ␛ to use in websites, apps, blogs, and docs.

Unicode
U+241B
HTML Code
␛
HEX Code
␛
CSS Code
\241B
JS/JSON
\u241B
Unix/C/PHP/JAVA
0x241B
URL-encode
%E2%90%9B

Customize Symbol For Escape

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

  

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

Insert in HTML

1. Direct symbol:
<span>␛</span>
HTML Code:
<span>&#9243;</span>
HEX Code:
<span>&#x241B;</span>

Add with CSS

.symbol-for-escape::before {
  content: '\\241B';
}

Set it in JavaScript

document.querySelector('.symbol-for-escape').textContent = '␛';
copied