Please consider the following ASCII string that comes in from a CSV file:
Foo\xe2\x80\x99s Bar
Using PHP, how can one reliably convert this to UTF-8 so that the value is:
Foo’s Bar
Please consider the following ASCII string that comes in from a CSV file:
Foo\xe2\x80\x99s Bar
Using PHP, how can one reliably convert this to UTF-8 so that the value is:
Foo’s Bar
Copyright © 2021 Jogjafile Inc.
If you get the string value printed as
Foo\xe2\x80\x99s Bar
, then in php the string can be defined like thisYou can get the string printed as
Foo’s Bar
using theeval()
method.The result display
Foo’s Bar
.