Plus Sign With Circumflex Accent Above

Shortcodes

Copy useful codes for plus sign with circumflex accent above symbol ⨣ to use in websites, apps, blogs, and docs.

Unicode
U+2A23
HTML Code
⨣
HEX Code
⨣
CSS Code
\2A23
JS/JSON
\u2A23
Unix/C/PHP/JAVA
0x2A23
URL-encode
%E2%A8%A3

Customize Plus Sign With Circumflex Accent Above

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

  

How to use Plus Sign With Circumflex Accent Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨣</span>
HTML Code:
<span>&#10787;</span>
HEX Code:
<span>&#x2A23;</span>

Add with CSS

.plus-sign-with-circumflex-accent-above::before {
  content: '\\2A23';
}

Set it in JavaScript

document.querySelector('.plus-sign-with-circumflex-accent-above').textContent = '⨣';
copied