I have some JSONP files which have data like: "ActiveLabel":"Site Survey Exact-Built™" (notice the ™ char).
When I read the data from the file, by creating a script tag and using that to evaluate the JSONP file, then I get � where ™ should be.
I tried setting charset="UTF-8" on the script tags I generate to load the JSONP, but that isn’t helping.
Any idea what I can do to correct this?
I used
charset="Cp1252"on the<script>elements that I was creating, and that worked. Got to get the charset right..