I am trying to scrape data from htm file in the format as it is including hex code for french characters, But after scraping it converts into character which I dont want. Any idea?? I have searched everywhere for this but failed to get answer so I registered here with my own trouble.
src = UserForm1.WebBrowser1.document.body.innerHTML
above code to get the source code
the specific "source text" which I want is below: the bold font one coverts to Character in extracteed source file.
"Intel Inside<sup>**®**</sup><br>pour une<br>productivit**é**<br>exceptionnelle."
but instead I am getting:
"Intel Inside<sup>®</sup><br>pour une<br>productivité<br>exceptionnelle.
How do I get the text I mentioned first. I have just started my VBA so I might sound naive, so please be lil gentle with me.
Thanks:)