I notice many references out there showing how superscripts/subscripts can work for titles, labels, and footers. But is there any way to make it work in string values?
ods escapechar='^';
data superscripts;
supc="BLABLABLA^{super c}";
supd="BLABLABLA^{super d}";
run;
Hi @BigPete
You can use the UNICODE SAS Function
data _null_;
str1=unicode("\u00AA");put str1=; /* default */
run;
str1=ª
I followed this link to lookup the values of the special/Unicode characters https://www.htmlsymbols.xyz/miscellaneous-symbols/subscript-and-superscript
Hope this helps
wow I never knew of this function! thanks for sharing it!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.