Mobile app version of vmapp.org
Login or Join
Ravi8258870

: Do characters encoded as HTML entities affect SEO? We have a website made in asp.net with razor engine. The razor engine encodes the content from source/database. So, for example, the letter

@Ravi8258870

Posted in: #ContentEncoding #Html #Seo

We have a website made in asp.net with razor engine. The razor engine encodes the content from source/database. So, for example, the letter ö becomes ö if I look at the source code in the browser.

Does it affect search engines in any way?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Ravi8258870

3 Comments

Sorted by latest first Latest Oldest Best

 

@Eichhorn148

Search engines know how to decode and index text with HTML entities. ö and ö both get indexed properly as the letter ö.

The only drawback to using HTML entities for such characters is the size of your source code. If you use a lot of such characters, it can significantly increase the byte count of your pages. Only a few characters need to be escaped to their html entities: < > & " '. Other characters can be written into the page verbatim as long as the character set allows it. If you use UTF-8, it supports all international characters natively without entity encoding.

10% popularity Vote Up Vote Down


 

@Angie530

There's an unnecessary fear among webmasters for using or not using certain elements on the website as it may affect their rankings. First of all, I would like to tell you that unless you are not trying to fool your users and working on delivering them the information they need in the easiest possible way, Google won't mind which HTML, CSS or PHP codes you are using.

10% popularity Vote Up Vote Down


 

@Marchetta884

No. Such encoding is standard web development and plays no part in SEO. If anything, I would think it would help since it properly defines such letters—in which case I guess it might play a part in SEO—just to contradict myself.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme