Turned Sans-serif Capital G

Shortcodes

Copy useful codes for turned sans-serif capital g symbol ⅁ to use in websites, apps, blogs, and docs.

Unicode
U+2141
HTML Code
⅁
HEX Code
⅁
CSS Code
\2141
JS/JSON
\u2141
Unix/C/PHP/JAVA
0x2141
URL-encode
%E2%85%81

Customize Turned Sans-serif Capital G

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

  

How to use Turned Sans-serif Capital G Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⅁</span>
HTML Code:
<span>&#8513;</span>
HEX Code:
<span>&#x2141;</span>

Add with CSS

.turned-sans-serif-capital-g::before {
  content: '\\2141';
}

Set it in JavaScript

document.querySelector('.turned-sans-serif-capital-g').textContent = '⅁';
copied