Latin Small Letter G With Breve

ğ

Shortcodes

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

Unicode
U+011F
HTML Code
ğ
HEX Code
ğ
CSS Code
\011F
JS/JSON
\u011F
Unix/C/PHP/JAVA
0x11F
URL-encode
%C4%9F

Customize Latin Small Letter G With Breve

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

ğ
  

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

Insert in HTML

1. Direct symbol:
<span>ğ</span>
HTML Code:
<span>&#287;</span>
HEX Code:
<span>&#x011F;</span>

Add with CSS

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

Set it in JavaScript

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