Mathematical Italic Small G

๐‘”

Shortcodes

Copy useful codes for mathematical italic small g symbol ๐‘” to use in websites, apps, blogs, and docs.

Unicode
U+1D454
HTML Code
𝑔
HEX Code
𝑔
CSS Code
\1D454
JS/JSON
\u1D454
Unix/C/PHP/JAVA
0x1D454
URL-encode
%F0%9D%91%94

Customize Mathematical Italic Small G

Customize ๐‘”, download it as SVG or PNG, or copy the generated HTML snippet.

๐‘”
  

How to use Mathematical Italic Small G Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐‘”</span>
HTML Code:
<span>&#119892;</span>
HEX Code:
<span>&#x1D454;</span>

Add with CSS

.mathematical-italic-small-g::before {
  content: '\\1D454';
}

Set it in JavaScript

document.querySelector('.mathematical-italic-small-g').textContent = '๐‘”';
copied