Skip to main content
Inspiring
September 28, 2017
Question

Strange Characters

  • September 28, 2017
  • 2 replies
  • 1619 views

The company that I upload my stories to has just changed their server and the new server doesn't handle non-ASCI letters. I've had to go back and edit all my stories to add the correct HTML code for è and ö and á for example. But I have some text that for some reason I can't edit. This is a section from my story as it appears when opened from their website:

Geena: &quot;Did I surprise you this morning?&quot;<br />

Me:Â "You sure did!"

I didn't want to ask her how she found out as I didn't want to admit it was true.

Geena:Â "U wanna know how I found out?"

Me:Â "I'm not admitting anything, but yes."

This is the code and as you can see there's no code that corresponds with the Â

Geena: &quot;Did I surprise you this morning?&quot;<br />

          <br />

          Me: &quot;You sure did!&quot;<br />

          <br />

          I didn't want to ask her how she found out as I didn't want to admit it was true.<br />

          Geena: &quot;U wanna know how I found out?&quot;<br />

Any idea what's going on her?

Thanks

Alan

This topic has been closed for replies.

2 replies

Participating Frequently
September 29, 2017

Check to see if you can add the UTF-8 meta tag to your pages. It may save some time.

<meta http-equiv="content-type" content="text/html; charset=UTF-8" />

Your page probably contains the byte sequence (C2A0), which is UTF-8 encoding of the "no-break space" character (U+00A0)

In ISO 8859-1 the byte sequence (C2A0) is an  character (U+00C2) followed by a "no-break space" character (U+00A0).

Inspiring
September 29, 2017

Okay. I did what Jon said and there is nothing in that space other than a dot (I presume that just indicates a space).

I did what servitor suggested and the  is still there. Strange but in another story with texts I don't have this problem as I used a different font in parenthesis. That may or may not have any bearing on the issue.

I also had issue with special characters not displaying correctly (à and é and ö etc.). I was told by a friend that it was due to the new server. UTF-8 doesn't render non-ASCI characters because of bit sizes used for the alphabet. Does that make sense

Alan

If I open the story in my browser (Safari) and go to Develop>Page Source then the  is visible in the code. That means the server is adding that as it's not visible in DW. Not sure what that means though.

Also if you notice, on the first line of the quoted text (Geena: &quot;Did I surprise you this morning?&quot;<br />) there is no Â.

Nancy OShea
Community Expert
Community Expert
September 29, 2017

Which doc type & character set does your DW document contain?

This would be preferred.

<!doctype html>

<html lang="en">

<head>

<meta charset="utf-8">

Edit > Preferences:

Nancy O'Shea— Product User & Community Expert
Jon Fritz
Community Expert
Community Expert
September 28, 2017

What happens in DW if...

1. Open the page

2. Go to View > Code View Options

3. Put a check mark by Hidden Characters

That might show the space between those characters as something other than a standard space.