Fullwidth Latin Small Letter G

Shortcodes

Copy useful codes for fullwidth latin small letter g symbol g to use in websites, apps, blogs, and docs.

Unicode
U+FF47
HTML Code
g
HEX Code
g
CSS Code
\FF47
JS/JSON
\uFF47
Unix/C/PHP/JAVA
0xFF47
URL-encode
%EF%BD%87

Customize Fullwidth Latin Small Letter G

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

  

How to use Fullwidth Latin Small Letter G Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>g</span>
HTML Code:
<span>&#65351;</span>
HEX Code:
<span>&#xFF47;</span>

Add with CSS

.fullwidth-latin-small-letter-g::before {
  content: '\\FF47';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-small-letter-g').textContent = 'g';
copied