Encoding We Will Go....
Spent most of the last day working on an encoding issue. We are brining MARC 8 records from the catalog and we need to convert them to UTF8 before putting them into a MySQL databases. Ended up using MARC::Charset 'marc8_to_utf8', it works great. Then we used an NFC function: $full = NFC($full); before loading the record.