To determine
your current SAS session encoding, which is the value assigned to
the ENCODING= system option, you can use the OPTIONS procedure or
the
OPTIONS window. For example, the following
PROC OPTIONS statement displays the session encoding value:
proc options option=encoding;
run;
The SAS log displays
the following information:
ENCODING=WLATIN1 Specifies default encoding for processing external data.
You can also determine
the SAS Session Encoding by using the following command:
%PUT %SYSFUNC(getOption(ENCODING));