Circled Ideograph Congratulation

Shortcodes

Copy useful codes for circled ideograph congratulation symbol ㊗ to use in websites, apps, blogs, and docs.

Unicode
U+3297
HTML Code
㊗
HEX Code
㊗
CSS Code
\3297
JS/JSON
\u3297
Unix/C/PHP/JAVA
0x3297
URL-encode
%E3%8A%97

Customize Circled Ideograph Congratulation

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

  

How to use Circled Ideograph Congratulation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>㊗</span>
HTML Code:
<span>&#12951;</span>
HEX Code:
<span>&#x3297;</span>

Add with CSS

.circled-ideograph-congratulation::before {
  content: '\\3297';
}

Set it in JavaScript

document.querySelector('.circled-ideograph-congratulation').textContent = '㊗';
copied