Clang doesn't recognize Unicode characters inside TEXT() macro

In a statement like : FString str = TEXT(“Succès”) , VC++ compiles fine but if I use clang for a Linux compile, the parser changes the file from Unicode into POT, reads the following: TEXT(“Succ<E9>s”) and flags an error. Is there a way for clang to parse the file as Unicode ?