Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Why is my code doing this?
My code is making this symbol: Â Whenever I do a space, it does that. I am using a WYSIWYG editor, and just type whatever I want right into it. But it keeps doing this: Â After a space. It doesn't show it right away, only when I save the file. Could someone please explain to me why it is doing that and how to fix it by using code or something? Thanks!
2 Answers
- Anonymous2 decades agoFavorite Answer
1 check your tagging
2 are you writing in word pad or notepad Notepad is the preferred method for designing pages a
3 Check to make sure you are not having crossover issue between html and xhtml if you need help let me know via email and i will send you programmer code in xhtml.to help you out
- 2 decades ago
You don't say what language you are using. But one thing to check is that you may be saving a unicode character (probably a 16bit ucs2) instead of a straight ascii space. Another explanation could be a simple bug in your code (e.g. in C/C++ you are forgetting to terminate your string after the space). Without seeing your code it's hard to say for sure.