- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 09-23-2021 06:32 PM
(2117 views)
Hi
I am writing as below but it is not working. Please help me.
data chk;
agegr1="~{unicode 2265} 65 years";
run;
Thanks,
Adi
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
After some try and error the following appears to work.
data chk;
agegr1=unicode("~ (*ESC*){unicode 2265} 65 years");;
run;
proc print data=chk;
run;