In SAS code you need to put string literals in quotes so that SAS doesn't think you are referencing a variable.
The QUOTE() function will add quotes around a value. So
Cote d'Ivoire
becomes
"Cote d'Ivoire"
or if you used the optional second argument to tell QUOTE() to use single quotes then it would become
'Cote d''Ivoire'
... View more