Latin Letter Small Capital G

ɢ

Shortcodes

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

Unicode
U+0262
HTML Code
ɢ
HEX Code
ɢ
CSS Code
\0262
JS/JSON
\u0262
Unix/C/PHP/JAVA
0x262
URL-encode
%C9%A2

Customize Latin Letter Small Capital G

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

ɢ
  

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

Insert in HTML

1. Direct symbol:
<span>ɢ</span>
HTML Code:
<span>&#610;</span>
HEX Code:
<span>&#x0262;</span>

Add with CSS

.latin-letter-small-capital-g::before {
  content: '\\0262';
}

Set it in JavaScript

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