Ideographic Full Stop

Shortcodes

Copy useful codes for ideographic full stop symbol 。 to use in websites, apps, blogs, and docs.

Unicode
U+3002
HTML Code
。
HEX Code
。
CSS Code
\3002
JS/JSON
\u3002
Unix/C/PHP/JAVA
0x3002
URL-encode
%E3%80%82

Customize Ideographic Full Stop

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

  

How to use Ideographic Full Stop Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>。</span>
HTML Code:
<span>&#12290;</span>
HEX Code:
<span>&#x3002;</span>

Add with CSS

.ideographic-full-stop::before {
  content: '\\3002';
}

Set it in JavaScript

document.querySelector('.ideographic-full-stop').textContent = '。';
copied