Here is a workaround e.g., for α : 1. Find/Replace to "alpha" in excel 2. import 3. Replace "alpha" with α in SAS (https://www.lexjansen.com/pharmasug/2010/CC/CC19.pdf) : %macro specchar(n=, symbol=); %global &symbol; data _null_; char=input(&n., $UCS2B4.); call symput("&symbol.",trim(left(char))); run; %put symbol=&&&symbol..; data test; var1 = "alpha"; var2 = tranwrd(var1, "alpha", "&&&symbol.."); run; %mend; %specchar(n='0040'x, symbol=alpha); *this is not exactly alpha, but 'at', the format does not show a symbol unless its code starts with '00' on a character map, you would need to explore that further to make this work;
... View more