Background: I have a feed that inserts data into an Airtable base using the API. Sometimes the feed inserts non-printing characters into one of the fields.
Specifically, it inserts the UTF-8 Byte Order Mark (BOM), EF BB BF, in the middle of a string. The field it gets inserted into is a URL field.
The BOM isn’t visible in Airtable, but when we try to use the link, we get 404 because of the %EF%BB%BF in the middle of the link.
For example, the link as displayed in Airtable would be something like “https://community.airtable.com/topic/2341”, but what is actually stored is “https://community.airtable.com/topic/%EF%BB%BF2341” .
Searching for %EF%BB%BF in Airtable using filters or automations gives no results.
Question: How can I search for and remove the BOM from field values where it appears?