HTML Entity for Seagull Below

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

What You'll Learn

How to display the combining seagull below (U+033C) in HTML using hexadecimal, decimal, and CSS escape methods. This is a combining diacritical mark—it attaches below the preceding base character (e.g. ) and is used in typography, linguistics, and phonetic notation.

Render it with ̼ or ̼ immediately after a base letter. There is no named HTML entity. Do not use U+033C alone without a base character—combining marks require a preceding letter to display correctly.

⚡ Quick Reference — Seagull Below

Unicode U+033C

Combining Diacritical Marks

Hex Code ̼

Hexadecimal reference

HTML Code ̼

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+033C
Hex code       ̼
HTML code      ̼
Named entity   (none)
CSS code       \33C
Meaning        Combining seagull below
Usage          Place after base letter: a̼
Related        U+0339 = right half ring below (̹)
               U+031F = combining plus sign below
Block          Combining Diacritical Marks (U+0300–U+036F)
1

Complete HTML Example

A simple example showing the combining mark on letter a using hex, decimal, and CSS content:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "a\33C";
  }
 </style>
</head>
<body>
<p>Seagull below (hex): a&#x033C;</p>
<p>Seagull below (decimal): a&#828;</p>
<p>Seagull below (CSS): <span id="point"></span></p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The combining seagull below (U+033C) is supported in modern browsers when fonts include Combining Diacritical Marks (U+0300–U+036F):

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the combining seagull below on base letters (always place U+033C after the base character):

On a
On o
On e
Numeric refs a&#x033C;   a&#828;   a\33C

🧠 How It Works

1

Hexadecimal Code

&#x033C; uses Unicode hexadecimal 033C. Place it immediately after the base character (e.g. a&#x033C;).

HTML markup
2

Decimal HTML Code

&#828; uses decimal Unicode value 828 for the same combining mark.

HTML markup
3

CSS Entity

\33C in CSS content, typically as "a\33C" with the base letter included in the string.

CSS stylesheet
=

Combined glyph

The mark attaches below the preceding base letter. Unicode U+033C (COMBINING SEAGULL BELOW). No named entity.

Use Cases

The combining seagull below (U+033C) commonly appears in:

💬 Phonetics

IPA and linguistic transcriptions with below-positioned diacritics.

📖 Linguistics

Academic papers and language studies requiring precise notation.

✎ Typography

Typographic designs and text styling with combining marks.

📚 Dictionaries

Pronunciation guides and reference materials.

🎓 Education

Language learning and linguistic tutorial content.

🌐 Symbol guides

Unicode and HTML entity reference pages for combining marks.

💡 Best Practices

Do

  • Place &#x033C; or &#828; immediately after the base character
  • Use IPA-friendly fonts (e.g. Charis SIL, Doulos SIL) for reliable rendering
  • Declare UTF-8 with <meta charset="utf-8">
  • Test combining sequences on target browsers and devices
  • Keep base letter + combining mark order consistent in source

Don’t

  • Use U+033C alone without a preceding base character
  • Put the combining mark before the base letter (wrong order)
  • Expect a named HTML entity for U+033C
  • Put CSS escape \33C in HTML text nodes without a base letter
  • Assume every system font renders combining marks clearly

Key Takeaways

1

Place numeric refs after the base letter: a̼

&#x033C; &#828;
2

For CSS, use "a\33C" in the content property

3

Unicode U+033C — COMBINING SEAGULL BELOW

4

No named entity—combining mark only

5

Always pair with a base character for correct display

❓ Frequently Asked Questions

Place &#x033C; (hex) or &#828; (decimal) immediately after a base character, e.g. a&#x033C;. There is no named HTML entity. The mark renders below the preceding letter.
U+033C (COMBINING SEAGULL BELOW). Combining Diacritical Marks block (U+0300–U+036F). Hex 033C, decimal 828. A non-spacing combining character.
In typography, linguistic notation, phonetic transcriptions, academic writing, and specialized text that requires a seagull-shaped diacritic below a base character.
U+033C is a combining character—it modifies the preceding base letter. Use it after a letter (e.g. a&#x033C;). Alone, it may appear invisible or misaligned depending on the font and browser.
HTML references (&#828; or &#x033C;) go in markup after the base character. The CSS escape \33C belongs in stylesheets, typically as content: "a\33C". Both render the mark below the letter.

Explore More HTML Entities!

Discover 1500+ HTML character references — combining marks, diacritics, 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