Latin Capital Letter G With Breve

Ğ

Shortcodes

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

Unicode
U+011E
HTML Code
Ğ
HEX Code
Ğ
CSS Code
\011E
JS/JSON
\u011E
Unix/C/PHP/JAVA
0x11E
URL-encode
%C4%9E

Customize Latin Capital Letter G With Breve

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

Ğ
  

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

Insert in HTML

1. Direct symbol:
<span>Ğ</span>
HTML Code:
<span>&#286;</span>
HEX Code:
<span>&#x011E;</span>

Add with CSS

.latin-capital-letter-g-with-breve::before {
  content: '\\011E';
}

Set it in JavaScript

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