Hi All,
I'm automating exports of some GDB feature class attribute tables to CSV using Python. One FC works beautifully and the other produces this error:
UnicodeEncodeError Traceback (most recent call last)
In [27]:
Line 9: csvwriter.writerow(row)
File C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\encodings\cp1252.py, in encode:
Line 19: return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\u0374' in position 149: character maps to <undefined>
Does anyone know what I should do to fix this?
-r