HTML Entity for Fullwidth Dollar Sign ($)

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

What Is Fullwidth Dollar Sign?

Fullwidth dollar sign ($) is the Unicode character at U+FF04 in Halfwidth and Fullwidth Forms. Official name: FULLWIDTH DOLLAR SIGN. It is the fullwidth form of the regular dollar sign $ — same meaning, wider glyph for East Asian layouts.

Remember
Character     $
Unicode       U+FF04
Hex entity    $
Decimal       $
CSS escape    \FF04
Named entity  (none)
Meaning       fullwidth dollar currency symbol
Not the same  $ ($) · ¢ (fullwidth cent) · S

Prefer $ or $ in HTML (no named form). You can also type $ in a UTF-8 document. For most Western pages, prefer a typed $ or $.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity$HTML markup (preferred)
Decimal entity$HTML markup
Direct character$HTML text (UTF-8)
CSS escape\FF04Stylesheet content

When to Use Which

SituationUse
Fullwidth East Asian layout$ or type $
Regular Western dollar amountDollar sign — $ / $
Fullwidth cent companionFullwidth cent sign (¢)
Plain ASCIIType $ or write USD
Generated text via ::before / ::aftercontent: "\FF04"

Live Preview

Symbol alone, in a sample price, and next to related forms.

Glyph $
Large glyph $
Sample Price: $100
Compared $   $   ¢   ¥
With entities Hex: $ | Decimal: $

Complete HTML Example

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

Hex + Decimal + CSS + Typed

Four ways to display $ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Fullwidth Dollar Sign (U+FF04) in HTML</title>
  <style>
    #point::after {
      content: "\FF04";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#xFF04;</p>
  <p>Built with Decimal: &#65284;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: $</p>
  <p>Price: <span aria-label="100 dollars">&#xFF04;100</span></p>
  <p>Regular dollar: &dollar;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#xFF04; inserts code point U+FF04 → $.

2. Decimal: same code point as 65284 → &#65284;. Same visual as hex.

3. CSS: use \FF04 in content (not an HTML entity). #point::after appends $.

4. Typed: paste $ in a UTF-8 document when you need the fullwidth dollar glyph. Compare with $ / &dollar; for the regular halfwidth form.

Pitfalls & Tips

Common mistakes when working with fullwidth dollar sign.

Name

No named entity

There is no HTML5 named entity for U+FF04. Use &#xFF04; or &#65284;. Do not invent &fulldollar;.

$

Not regular $

Regular dollar is $ (U+0024). Fullwidth is $. Prefer $ / &dollar; unless you need fullwidth alignment.

Width

Mixed widths look uneven

Pair $ with fullwidth digits (for example 100). Mixing with ASCII digits often looks misaligned.

Font

Font coverage

Some fonts omit fullwidth currency forms. If $ is missing, fall back to $ or a font with Halfwidth and Fullwidth Forms coverage.

CSS vs HTML

Do not mix escapes

\FF04 belongs in CSS strings. &#xFF04; / &#65284; belong in HTML.

a11y

Add accessible text

Screen readers may not announce $ clearly. Prefer aria-label="100 dollars" or nearby prose when the amount matters.

Semicolon

End references

Always finish entities with ; — write &#xFF04;, not &#xFF04.

Browser Support

Fullwidth dollar sign (U+FF04) and its entity forms (&#xFF04;, &#65284;, CSS \\FF04) are supported in all mainstream browsers. Visible glyphs depend on Halfwidth and Fullwidth Forms font coverage.

✓ Universal support

Fullwidth Dollar Sign (&#xFF04;)

Encode with 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 All versions
Yes
U+FF04 Full support

Bottom line: Prefer &#xFF04; in HTML (no named form). Use &#65284; when decimal form is required, and \\FF04 only inside CSS content.

Key Takeaways

  • Unicode: fullwidth dollar is U+FF04 (decimal 65284) — glyph $.
  • HTML: no named entity — use &#xFF04; / &#65284; / type $.
  • CSS: use \FF04 inside content for generated text.
  • Meaning: $ ≠ $ (prefer $ / &dollar; unless you need fullwidth).

One line: U+FF04 → &#xFF04; / &#65284; / CSS \FF04 (no named form).

Frequently Asked Questions

Use &#xFF04; (hex), &#65284; (decimal), type $ directly in UTF-8, or the CSS escape \FF04 in content. There is no named HTML entity for U+FF04.
U+FF04 (FULLWIDTH DOLLAR SIGN). Hex FF04, decimal 65284. It belongs to the Halfwidth and Fullwidth Forms block (U+FF00–U+FFEF).
No. HTML5 does not define a named entity for U+FF04. Prefer &#xFF04; or &#65284;. The regular dollar sign uses &dollar; or a typed $.
Use it in East Asian fullwidth layouts where currency symbols should match fullwidth digit width. Prefer the regular dollar sign (U+0024, $ / &dollar;) for most Western pages.
HTML numeric entities (&#65284; or &#xFF04;) go in markup. The CSS escape \FF04 goes in stylesheet strings (usually content on ::before/::after).
No. U+FF04 is the fullwidth dollar ($). The regular dollar sign is U+0024 ($). They look similar but have different widths and code points.

Did you know?

Fullwidth dollar sign is Unicode U+FF04 (decimal 65284) — glyph $ (FULLWIDTH DOLLAR SIGN) in Halfwidth and Fullwidth Forms. There is no HTML5 named entity; use &#xFF04; or &#65284;. It is the fullwidth counterpart of the regular dollar sign ($, &dollar;). Prefer $ for Western layouts; use $ when aligning with East Asian fullwidth typography.

Next: Fullwidth Pound Sign

Learn the HTML entity for fullwidth pound sign (U+FFE1).

Fullwidth pound sign 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