HTML Entity for Uppercase U Macron (Ū)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+016A

What Is Uppercase U Macron?

Uppercase U macron (Ū) is the Unicode character at U+016A in Latin Extended-A. Official name: LATIN CAPITAL LETTER U WITH MACRON — a capital U with a horizontal bar above, often marking a long vowel (as in Latvian or Māori).

Remember
Character     Ū
Unicode       U+016A
Named entity  Ū  (capital U)
Hex entity    Ū
Decimal       Ū
CSS escape    \016A
Not the same  ū · Ŭ · U

Prefer Ū in HTML markup — the capital U in the name matters. Numeric forms and typing Ū in UTF-8 also work. For the lowercase letter, use ū (ū).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityŪHTML markup (preferred)
Direct characterŪHTML text (UTF-8)
Hex entityŪHTML markup
Decimal entityŪHTML markup
CSS escape\016AStylesheet content
Lowercase (related)ū (U+016B)Named ū

When to Use Which

SituationUse
Capital U with macron (Ū)Ū or type Ū
Lowercase u with macron (ū)ū (ū)
Capital U with breve (Ŭ)Ŭ (Ŭ)
Capital U with inverted breve (Ȗ)Ȗ (Ȗ)
Plain capital UU (U+0055)
Generated text via ::before / ::aftercontent: "\016A"

Live Preview

Uppercase U macron rendered alone and next to related letters.

Large glyph Ū
Notation BŪT
Compared Ū  |  ū  |  Ŭ
Hint Compare: Macron Ū | Lower ū | Breve Ŭ | Plain U
With entities Named: Ū | Hex: Ū | Decimal: Ū

Complete HTML Example

One page that shows the letter with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce Ū, plus a short Latvian word example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase U Macron (Ū)</title>
  <style>
    #point::after {
      content: "\016A";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &Umacr;</p>
  <p>Using Hex Code: &#x16A;</p>
  <p>Using HTML Code: &#362;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ū</p>
  <p lang="lv">Word: B&Umacr;T</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &Umacr; (capital U) is the clearest HTML form for U+016A. Lowercase &umacr; is a different character (ū).

2. Hex: U+016A → &#x16A; in HTML. Same glyph as the named entity.

3. Decimal: same code point as 362 → &#362;. Same glyph as hex and named.

4. CSS: use \016A in content (not an HTML entity). #point::after appends that Ū after the paragraph text.

5. Typed / word: paste Ū in UTF-8, or build Latvian words like B&Umacr;T with lang="lv".

Pitfalls & Tips

Common mistakes when working with U+016A.

Case

&Umacr; ≠ &umacr;

&Umacr; → Ū (capital). &umacr; → ū (lowercase). Entity names are case-sensitive.

vs Ŭ

Not a breve

Ŭ (&Ubreve;) has a breve (˘). Macron Ū and breve Ŭ are different marks.

vs Ǖ

Not diaeresis + macron

Ǖ is U with both diaeresis and macron. Ū has the macron only — do not swap them.

Encoding

Keep UTF-8 declared

Latin Extended-A letters display reliably with <meta charset="UTF-8">. Prefer named entities when the source file encoding is uncertain.

CSS vs HTML

Do not mix escapes

\016A belongs in CSS strings. &Umacr; / &#x16A; / &#362; belong in HTML.

A11y

Use real language context

When Ū appears in Latvian or Māori words, keep surrounding text and lang accurate (for example lv) so screen readers get useful context.

Browser Support

Uppercase U macron (U+016A) and its entity forms (&Umacr;, &#x16A;, &#362;, CSS \\016A) are supported in all mainstream browsers. Latin Extended-A glyphs are widely available in system fonts.

✓ Universal support

Uppercase U Macron (&#x016A;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes
U+016A / &Umacr; Full support

Bottom line: Prefer &Umacr; (capital U) in HTML. Use \\016A only inside CSS content. Do not confuse with &umacr; (ū), breve Ŭ, or Ǖ.

Key Takeaways

  • Unicode: uppercase U macron is U+016A (decimal 362) — glyph Ū.
  • HTML: prefer &Umacr; (capital U) — also &#x16A; / &#362;.
  • CSS: use \016A inside content for generated text.
  • Meaning: Ū is capital macron — not ū (&umacr;), not Ŭ (breve), not plain U.

One line: U+016A → &Umacr; / &#x16A; / &#362; / CSS \016A.

Frequently Asked Questions

Use &Umacr; (named), &#x16A; (hex), &#362; (decimal), type Ū directly in UTF-8, or the CSS escape \016A in content. Prefer &Umacr; in normal HTML.
U+016A (LATIN CAPITAL LETTER U WITH MACRON). Hex 16A, decimal 362. It belongs to Latin Extended-A (U+0100–U+017F).
Yes. Use &Umacr; (capital U). Numeric forms &#362; and &#x16A; also work. Note: &umacr; (lowercase) is a different letter (ū).
No. Ū is U+016A (&Umacr;, capital macron). ū is U+016B (&umacr;). Ŭ is U+016C (&Ubreve;, breve).
Use it for Latvian, Māori, and other orthographies that need long Ū — not as a substitute for Ŭ or plain U.
HTML entities (&Umacr;, &#362;, or &#x16A;) go in markup. The CSS escape \016A goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase U macron is Unicode U+016A (decimal 362) — glyph Ū in Latin Extended-A (U+0100–U+017F). HTML5 names it &Umacr; (capital U). Official name: LATIN CAPITAL LETTER U WITH MACRON. Lowercase is &umacr; (ū, U+016B). Common in Latvian, Māori, and linguistic length marking. Do not confuse with breve Ŭ (&Ubreve;) or U with diaeresis and macron Ǖ (U+01D5).

Next: Uppercase U Middle Bar

Learn the HTML entity for uppercase U with middle bar (U+0244).

Continue tutorial →

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