Latin Small Letter G With Cedilla

ģ

Shortcodes

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

Unicode
U+0123
HTML Code
ģ
HEX Code
ģ
CSS Code
\0123
JS/JSON
\u0123
Unix/C/PHP/JAVA
0x123
URL-encode
%C4%A3

Customize Latin Small Letter G With Cedilla

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

ģ
  

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

Insert in HTML

1. Direct symbol:
<span>ģ</span>
HTML Code:
<span>&#291;</span>
HEX Code:
<span>&#x0123;</span>

Add with CSS

.latin-small-letter-g-with-cedilla::before {
  content: '\\0123';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-g-with-cedilla').textContent = 'ģ';
copied