I have a CSV file exported by Exchange which contains address / contact information. Some of these values contain foreign characters so they're encoded in unicode.
If I export the CSV without the unicode flag set, strings that contain foreign characters end up like this, and I don't know what to do with this:
X'a389e39e'
Or when I export with the unicode flag set, I don't know how to read it as PHP just sees garbage data.
So how can I read this CSV file and display the contents on a web page?
Start Free Trial