Latin Small Letter G With Dot Above

ġ

Shortcodes

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

Unicode
U+0121
HTML Code
ġ
HEX Code
ġ
CSS Code
\0121
JS/JSON
\u0121
Unix/C/PHP/JAVA
0x121
URL-encode
%C4%A1

Customize Latin Small Letter G With Dot Above

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

ġ
  

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

Insert in HTML

1. Direct symbol:
<span>ġ</span>
HTML Code:
<span>&#289;</span>
HEX Code:
<span>&#x0121;</span>

Add with CSS

.latin-small-letter-g-with-dot-above::before {
  content: '\\0121';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-g-with-dot-above').textContent = 'ġ';
copied