I've a word document containing different fonts and different languages. One instance would be a text in english and a corresponding translation in ancient greek. For the ancient greek part a TrueType Font was used (https://fonts2u.com/greek-regular.font). Now this approach is highly unsuitable for sharing those files and I'd like to convert the ancient greek part into corresponding unicode characters.
I tried the python package python-docx to import the file. Although successfull at importing and viewing the file content, I couldn't find a way to select only the ancient greek characters and convert them to their corresponding unicode characters.
I was thinking about using the TrueType Font character map and find and replace those characters with the corresponding unicode characters. However viewing the contents I was unable to select only ancient greek characters.
Q: Is there a way using VBA, python or exporting the files in different encodings to "translate" the ancient greek characters to their corresponding unicode characters?