HTML Entity for Full Width Pound Sign (£)

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

What You'll Learn

How to display the Full Width Pound sign (£) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+FFE1 (FULLWIDTH POUND SIGN) in the Halfwidth and Fullwidth Forms block (U+FF00–U+FFEF)—the fullwidth variant of the pound sign for CJK and mixed fullwidth layouts.

Render it with £, £, or CSS escape \FFE1. There is no named HTML entity. Do not confuse £ with the regular pound (£, U+00A3, £) or fullwidth dollar ($, U+FF04).

⚡ Quick Reference — Full Width Pound Sign

Unicode U+FFE1

Halfwidth and Fullwidth Forms

Hex Code £

Hexadecimal reference

HTML Code £

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+FFE1
Hex code       £
HTML code      £
Named entity   (none)
CSS code       \FFE1
Meaning        Fullwidth pound sign
Related        U+00A3 = Pound sign (£); U+FF04 = Fullwidth dollar ($)
1

Complete HTML Example

This example demonstrates the Full Width Pound Sign (£) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\FFE1";
  }
 </style>
</head>
<body>
<p>Full Width Pound Sign using Hexadecimal: &#xFFE1;</p>
<p>Full Width Pound Sign using HTML Code: &#65505;</p>
<p id="point">Full Width Pound Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Full Width Pound Sign is widely supported in modern browsers with a suitable font:

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

👀 Live Preview

See the Full Width Pound sign (£) in fullwidth pricing and compared with related symbols:

Fullwidth price £100   £50
Pound variants £ fullwidth   £ regular
Large glyph
CJK alignment 価格:£99
Numeric refs &#xFFE1; &#65505; \FFE1

🧠 How It Works

1

Hexadecimal Code

&#xFFE1; uses the Unicode hexadecimal value FFE1 to display the Full Width Pound sign. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#65505; uses the decimal Unicode value 65505 to display the same character.

HTML markup
3

CSS Entity

\FFE1 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+FFE1 is in Halfwidth and Fullwidth Forms. For the regular pound, use &pound; (£) or see Currency Entities.

Use Cases

The Full Width Pound Sign (£) is commonly used in:

📐 East Asian typography

Fullwidth layouts mixing CJK and Latin with consistent character width.

💰 E-commerce

International product listings and price displays in fullwidth form.

🌍 CJK layouts

Chinese, Japanese, or Korean content where £ aligns with fullwidth digits.

📝 Forms

Input fields and data entry that display fullwidth currency symbols.

📊 Tables

Financial or data tables where fullwidth symbols keep column alignment uniform.

🌐 Symbol references

HTML entity lists, Unicode charts, and Halfwidth/Fullwidth documentation.

💡 Best Practices

Do

  • Use &#65505; or &#xFFE1; consistently (no named entity)
  • Use £ when aligning with fullwidth text; use £ or &pound; in normal Latin typography
  • Supplement prices with text (e.g. “99 pounds”) for screen reader clarity
  • Use the CSS escape in ::before / ::after for price lists
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse £ (fullwidth pound) with £ (regular pound, U+00A3)
  • Expect a named entity—none exists for U+FFE1
  • Put CSS escape \FFE1 in HTML text nodes
  • Mix fullwidth and halfwidth currency symbols in one line without intent
  • Skip font checks in CJK and mixed fullwidth layouts

Key Takeaways

1

Two HTML numeric references plus CSS render £

&#xFFE1; &#65505;
2

For CSS stylesheets, use the escape in the content property

\FFE1
3

Unicode U+FFE1 — FULLWIDTH POUND SIGN

4

Halfwidth and Fullwidth Forms (U+FF00–U+FFEF)

❓ Frequently Asked Questions

Use &#xFFE1; (hex), &#65505; (decimal), or \FFE1 in CSS content. There is no named entity.
U+FFE1 (FULLWIDTH POUND SIGN). Halfwidth and Fullwidth Forms block (U+FF00–U+FFEF). Hex FFE1, decimal 65505. Fullwidth form of the pound sign (£).
In fullwidth typography, CJK layout alignment, pricing in fullwidth contexts, forms and tables, and design where a fullwidth pound symbol is required for visual consistency.
HTML references (&#65505; or &#xFFE1;) go in markup. The CSS escape \FFE1 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
The HTML named character set includes only a subset of symbols. Use &#65505; (decimal) or &#xFFE1; (hexadecimal)—both render £ in modern browsers.

Explore More HTML Entities!

Discover 1500+ HTML character references — fullwidth forms, currency 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