Plus Sign With Dot Below

Shortcodes

Copy useful codes for plus sign with dot below symbol ⨥ to use in websites, apps, blogs, and docs.

Unicode
U+2A25
HTML Code
⨥
HEX Code
⨥
CSS Code
\2A25
JS/JSON
\u2A25
Unix/C/PHP/JAVA
0x2A25
URL-encode
%E2%A8%A5

Customize Plus Sign With Dot Below

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

  

How to use Plus Sign With Dot Below Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨥</span>
HTML Code:
<span>&#10789;</span>
HEX Code:
<span>&#x2A25;</span>

Add with CSS

.plus-sign-with-dot-below::before {
  content: '\\2A25';
}

Set it in JavaScript

document.querySelector('.plus-sign-with-dot-below').textContent = '⨥';
copied