MetaTag Description - Special Characters - Influence on SEO

0

My metatag description is made up of a text, which has accents . I create it in my Controller MVC and send it to view via viewbag .

However, in my html text (via display page source ) is getting different encoding, meaning the accents see those codes. For example:
Original text : Producer's Event at 10 Kirkpatrick St, to N ...
Text Generated : Producer's Event at 10 Kirkpatrick St, at & # 233 ...

  

Question : Should I worry about this? Should I correct this?   If so, how?
  Would robots interpret information regardless of the encoding used?

    
asked by anonymous 06.12.2017 / 14:23

1 answer

0

The solution is simple. Just add the helper @Html.Raw

See example:
<meta name="description" content="@Html.Raw(ViewBag.description)" />

    
06.12.2017 / 14:54