Latin Capital Letter G With Cedilla

Ģ

Shortcodes

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

Unicode
U+0122
HTML Code
Ģ
HEX Code
Ģ
CSS Code
\0122
JS/JSON
\u0122
Unix/C/PHP/JAVA
0x122
URL-encode
%C4%A2

Customize Latin Capital Letter G With Cedilla

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

Ģ
  

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

Insert in HTML

1. Direct symbol:
<span>Ģ</span>
HTML Code:
<span>&#290;</span>
HEX Code:
<span>&#x0122;</span>

Add with CSS

.latin-capital-letter-g-with-cedilla::before {
  content: '\\0122';
}

Set it in JavaScript

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