HTML Entity for Currency Sign (¤)

What You'll Learn
How to display the Currency sign (¤) in HTML using the named entity, numeric references, and CSS escapes. This character is U+00A4 (CURRENCY SIGN) in the Latin-1 Supplement block. It is a generic currency placeholder when the actual symbol ($, €, £) is unknown or unspecified.
You can use the named entity ¤, hex ¤ (or ¤), decimal ¤, or CSS \A4. ¤ is easy to remember for templates and multilingual content. Do not confuse ¤ with specific currencies—use Cent Sign (¢), Colon Sign (₡), or symbols on the currency entities hub when the currency is known.
⚡ Quick Reference — Currency Sign
U+00A4Latin-1 Supplement
¤Hexadecimal reference
¤Decimal reference
¤Standard HTML entity
Name Value
──────────── ──────────
Unicode U+00A4
Hex code ¤
HTML code ¤
Named entity ¤
CSS code \A4Complete HTML Example
This example demonstrates the Currency sign (¤) using hexadecimal code, decimal HTML code, the named entity ¤, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\A4";
}
</style>
</head>
<body>
<p>Currency Sign using Hexadecimal: ¤</p>
<p>Currency Sign using HTML Code: ¤</p>
<p>Currency Sign using HTML Entity: ¤</p>
<p id="point">Currency Sign using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+00A4 is universally supported in all browsers:
👀 Live Preview
See the Currency Sign in common contexts:
🧠 How It Works
Hexadecimal Code
¤ (or ¤) references code point U+00A4 using hex digits A4.
Decimal HTML Code
¤ is the decimal equivalent (164) for the same character.
Named HTML Entity
¤ is the standard named entity for U+00A4—widely used for generic currency placeholders.
CSS Entity
\A4 is the CSS escape for U+00A4, used in the content property of ::before or ::after.
Same visual result
All four methods produce the currency sign: ¤. Unicode U+00A4 is in the Latin-1 Supplement block.
Use Cases
The Currency sign (¤) is commonly used in:
Price or invoice templates where the actual currency symbol is filled in later (¤____).
Content that supports multiple currencies without committing to $, €, or £.
Generic price display when currency is unspecified or “price in local currency.”
Reports and forms before the actual currency symbol is known.
Unicode and HTML entity reference pages listing U+00A4.
Config screens and apps showing “currency” as a default placeholder.
💡 Best Practices
Do
- Prefer
¤for readable generic currency placeholders - Use ¤ when the actual currency is unknown; use specific symbols when it is known
- Keep entity style consistent across templates and pricing pages
- Use
\A4only inside CSScontent - Link to the currency entities hub for dollar, euro, and related signs
Don’t
- Confuse generic ¤ with Cent Sign (¢) or specific national currencies
- Use ¤ when you mean copyright (©) or other symbols
- Use U+00A4 notation incorrectly—standard form is U+00A4
- Put CSS escape
\A4in HTML text nodes - Mix entity styles randomly in one file
Key Takeaways
Named entity for placeholders
¤Numeric references also render ¤
¤ ¤For CSS stylesheets, use the escape in the content property
\A4U+00A4 Currency Sign (Latin-1 Supplement)
Four methods, one glyph — universally supported
❓ Frequently Asked Questions
¤ (named entity), ¤ or ¤ (hex), ¤ (decimal), or \A4 in CSS content. All four methods render ¤.U+00A4 (CURRENCY SIGN). Latin-1 Supplement. Hex A4 (or 00A4), decimal 164.¤ is the most readable form.¤, ¤, or ¤) go directly in markup. The CSS escape \A4 is used in stylesheets, typically in the content property of pseudo-elements.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, arrows, and more.
8 people found this page helpful
