Vertical Kana Repeat With Voiced Sound Mark

Shortcodes

Copy useful codes for vertical kana repeat with voiced sound mark symbol 〲 to use in websites, apps, blogs, and docs.

Unicode
U+3032
HTML Code
〲
HEX Code
〲
CSS Code
\3032
JS/JSON
\u3032
Unix/C/PHP/JAVA
0x3032
URL-encode
%E3%80%B2

Customize Vertical Kana Repeat With Voiced Sound Mark

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

  

How to use Vertical Kana Repeat With Voiced Sound Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>〲</span>
HTML Code:
<span>&#12338;</span>
HEX Code:
<span>&#x3032;</span>

Add with CSS

.vertical-kana-repeat-with-voiced-sound-mark::before {
  content: '\\3032';
}

Set it in JavaScript

document.querySelector('.vertical-kana-repeat-with-voiced-sound-mark').textContent = '〲';
copied