Succeeds

Shortcodes

Copy useful codes for succeeds symbol ≻ to use in websites, apps, blogs, and docs.

Unicode
U+227B
HTML Code
≻
HEX Code
≻
CSS Code
\227B
JS/JSON
\u227B
Unix/C/PHP/JAVA
0x227B
URL-encode
%E2%89%BB

Customize Succeeds

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

  

How to use Succeeds Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≻</span>
HTML Code:
<span>&#8827;</span>
HEX Code:
<span>&#x227B;</span>

Add with CSS

.succeeds::before {
  content: '\\227B';
}

Set it in JavaScript

document.querySelector('.succeeds').textContent = '≻';
copied