Broken Circle With Northwest Arrow

Shortcodes

Copy useful codes for broken circle with northwest arrow symbol ⎋ to use in websites, apps, blogs, and docs.

Unicode
U+238B
HTML Code
⎋
HEX Code
⎋
CSS Code
\238B
JS/JSON
\u238B
Unix/C/PHP/JAVA
0x238B
URL-encode
%E2%8E%8B

Customize Broken Circle With Northwest Arrow

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

  

How to use Broken Circle With Northwest Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⎋</span>
HTML Code:
<span>&#9099;</span>
HEX Code:
<span>&#x238B;</span>

Add with CSS

.broken-circle-with-northwest-arrow::before {
  content: '\\238B';
}

Set it in JavaScript

document.querySelector('.broken-circle-with-northwest-arrow').textContent = '⎋';
copied