Philippine Single Punctuation

Shortcodes

Copy useful codes for philippine single punctuation symbol ᜵ to use in websites, apps, blogs, and docs.

Unicode
U+1735
HTML Code
᜵
HEX Code
᜵
CSS Code
\1735
JS/JSON
\u1735
Unix/C/PHP/JAVA
0x1735
URL-encode
%E1%9C%B5

Customize Philippine Single Punctuation

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

  

How to use Philippine Single Punctuation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>᜵</span>
HTML Code:
<span>&#5941;</span>
HEX Code:
<span>&#x1735;</span>

Add with CSS

.philippine-single-punctuation::before {
  content: '\\1735';
}

Set it in JavaScript

document.querySelector('.philippine-single-punctuation').textContent = '᜵';
copied