I have a blob which holds HTML in it. Some of this HTML has foreign characters (ie: æ, ø, etc). I want to convert the BLOB into TEXT. I am using latin1 for my tables and changing this is not an option. From what I can tell, if if I store the foreign characters in TEXT, it is converted into something like ASCII. But if you store it in BLOB, it doesn't, it stays as the foreign character.
So, how can I convert this BLOB data into TEXT adn convert the BLOBL data into the ASCII like versions for the special characters?