I am reading a csv file in node.js
that contains urls, I want to be able to detect when a string contains this character � or any other character that is not the proper UTF8 symbol.
Wrong URL I want to be able to detect:
'https://example.com/v�hicules-de-location/france'
Right URL I want to ignore
'https://example.com/véhicules-de-location/france'
Is there an easy way with JavaScript to do that?