HTML Entity for Lowercase G Spirit (ɡ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0261

What You'll Learn

How to display the IPA script g (ɡ) in HTML using hexadecimal, decimal, and CSS escape methods. Officially LATIN SMALL LETTER SCRIPT G, this single-story form is used in the International Phonetic Alphabet for the voiced velar plosive. It is U+0261 in the IPA Extensions block.

Render it with ɡ, ɡ, or CSS escape \0261. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase G Spirit Entity

Unicode U+0261

IPA Extensions

Hex Code ɡ

Hexadecimal reference

HTML Code ɡ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0261
Hex code       ɡ
HTML code      ɡ
Named entity   (none)
CSS code       \0261
Meaning        Latin small letter script g
IPA use        Voiced velar plosive
Also known as  G spirit (single-story g)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the IPA script g (ɡ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0261";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0261;</p>
<p>Symbol (decimal): &#609;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The IPA script g (ɡ) and its numeric entity references are supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the IPA script g (ɡ) in phonetic transcription contexts:

Large glyphɡ
IPA meaningVoiced velar plosive: [ɡ]
ShapeSingle-story (script) g
Not the same asplain g (U+0067), ɠ (g hook), or (&gscr;)
Numeric refs&#x0261; &#609; \0261

🧠 How It Works

1

Hexadecimal Code

&#x0261; uses the Unicode hexadecimal value 0261 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#609; uses the decimal Unicode value 609 to display the same character. A common method for IPA Extension characters.

HTML markup
3

CSS Entity

\0261 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ɡ. Unicode U+0261 sits in IPA Extensions. Do not confuse ɡ with plain g (U+0067), ɠ (g hook), or ℊ (&gscr;). There is no named HTML entity.

Use Cases

The IPA script g (ɡ) is commonly used in:

🔤 IPA transcription

Voiced velar plosive [ɡ] in International Phonetic Alphabet notation.

🔬 Linguistics

Phonology papers, language documentation, and academic phonetic writing.

📚 Dictionaries

Pronunciation guides and language-learning resources with IPA symbols.

🎤 Speech tools

Speech therapy, pronunciation apps, and phonetics software.

📄 Academic research

Linguistics and phonetics publications with correct IPA rendering.

♿ Accessibility

Proper encoding helps assistive technologies handle IPA content.

🌐 Linguistic sites

IPA and phonetic web content with proper character encoding.

💡 Best Practices

Do

  • Use &#609; or &#x0261; in HTML (no named entity exists)
  • Use ɡ in IPA instead of plain g to avoid open-tail confusion
  • Serve pages as UTF-8; you can also type ɡ directly in UTF-8 source
  • Use fonts that support IPA Extensions (U+0250–U+02AF)
  • Distinguish ɡ (script g) from ɠ (g hook) and ℊ (&gscr;)

Don’t

  • Substitute plain g (U+0067) when IPA requires ɡ
  • Confuse ɡ with ɠ (voiced velar implosive) or ℊ (letterlike &gscr;)
  • Put CSS escape \0261 in HTML text nodes
  • Assume all fonts render IPA Extension glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render ɡ (no named entity)

&#x0261; &#609;
2

For CSS stylesheets, use the escape in the content property

\0261
3

Unicode U+0261 — LATIN SMALL LETTER SCRIPT G

4

IPA voiced velar plosive; single-story g (IPA Extensions)

❓ Frequently Asked Questions

Use &#x0261; (hex), &#609; (decimal), or \0261 in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+0261 (LATIN SMALL LETTER SCRIPT G). IPA Extensions block. Hex 0261, decimal 609. Used in IPA for the voiced velar plosive.
In IPA phonetic transcription, linguistic and phonetic content, language learning and dictionary sites, academic papers, and any content requiring the IPA script g (voiced velar plosive) symbol.
Named HTML entities are typically reserved for ASCII, Latin-1, and common characters. ɡ is in the IPA Extensions block and has no predefined named entity. Use &#x0261;, &#609;, or \0261 instead.
ɡ (U+0261) is the Latin small letter script g used in IPA for the voiced velar plosive; it has a single-story shape. The regular Latin small letter g is U+0067 and often has a double-story shape in many fonts. In IPA and linguistics, ɡ is preferred to avoid confusion with the open-tail g. They are different Unicode characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful