-1

Is there a concise way to scan an html script for entities it is unfamiliar with and import them with their html codes? All I'm getting in place of a 'degree celsius' character, for example, is a question mark.

Jonny1998
  • 107
  • 1
  • 1
  • 13

1 Answers1

0

I think your problem is that you're not declaring character encoding. What you need to do is this:

In your <head> element, insert the following code:

<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">

Reference from MDN

Reference from W3Schools

Jack Bashford
  • 43,180
  • 11
  • 50
  • 79