Thai Character Fongman

Shortcodes

Copy useful codes for thai character fongman ๏ to use in websites, apps, blogs, and docs.

Unicode
U+0E4F
HTML Code
๏
HEX Code
๏
CSS Code
\0E4F
JS/JSON
\u0E4F
Unix/C/PHP/JAVA
0xE4F
URL-encode
%E0%B9%8F

Customize Thai Character Fongman

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

  

How to use Thai Character Fongman in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๏</span>
HTML Code:
<span>&#3663;</span>
HEX Code:
<span>&#x0E4F;</span>

Add with CSS

.thai-character-fongman::before {
  content: '\\0E4F';
}

Set it in JavaScript

document.querySelector('.thai-character-fongman').textContent = '๏';
copied