• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Strange £ Sign

Contributor ,
Aug 09, 2021 Aug 09, 2021

Copy link to clipboard

Copied

Hi all.

I'm using the £ sign on an HTML page.

Todate this has been ok.

However today when I enter the £ sign it looks ok, but on the page it has a large A infront of every one and on every page and every browser.

I can't reproduce the A here so I've included an image of it.

Has anyone had this and know a solution?

Views

177

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Aug 09, 2021 Aug 09, 2021

This is most likely a charset encoding issue.

Look at the top of your html code. You should have something similar to the following...

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>

Make sure you're using the right doctype (html5's version shown) and character set meta tag (utf-8 should show all of your special characters without issue). 

If you already have those set, share a link to your page so we can take a look and see if something else might be causing

...

Votes

Translate

Translate
Community Expert ,
Aug 09, 2021 Aug 09, 2021

Copy link to clipboard

Copied

This is most likely a charset encoding issue.

Look at the top of your html code. You should have something similar to the following...

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>

Make sure you're using the right doctype (html5's version shown) and character set meta tag (utf-8 should show all of your special characters without issue). 

If you already have those set, share a link to your page so we can take a look and see if something else might be causing the issue for you.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Aug 09, 2021 Aug 09, 2021

Copy link to clipboard

Copied

Excellent Jon.

That was exactly what was missing.

Thanks for yoyr help.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Aug 09, 2021 Aug 09, 2021

Copy link to clipboard

Copied

LATEST

I would advise not using the £ symbol but the html entity &pound;

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines