Circled Latin Capital Letter G

Shortcodes

Copy useful codes for circled latin capital letter g symbol Ⓖ to use in websites, apps, blogs, and docs.

Unicode
U+24BC
HTML Code
Ⓖ
HEX Code
Ⓖ
CSS Code
\24BC
JS/JSON
\u24BC
Unix/C/PHP/JAVA
0x24BC
URL-encode
%E2%92%BC

Customize Circled Latin Capital Letter G

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⓖ</span>
HTML Code:
<span>&#9404;</span>
HEX Code:
<span>&#x24BC;</span>

Add with CSS

.circled-latin-capital-letter-g::before {
  content: '\\24BC';
}

Set it in JavaScript

document.querySelector('.circled-latin-capital-letter-g').textContent = 'Ⓖ';
copied