@athornfam2
Correction here, the character is (’
) - https://www.codetable.net/hex/92
This is apparently not a UTF-8 character but a Windows-1252 private use character - I wasn't even aware of the difference before looking this up. If you open your CSV in Notepad++ and select Encoding > UTF8 you see the same x92
we saw in your error message.
I've been pulling my hair out with this. It seems you'll only run into the issue when importing data via CSV because browsers will seemingly convert the character for you*?*
-
This PR should detect non-UTF8 characters and attempt to convert them. It might not get them 100% of the time, but it should sort it out for you based on what you were able to share.
itflow-org/itflow1067
Edit: This fix requires the MBString PHP extension.