<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711778#M20908</link>
    <description>&lt;P&gt;I see that you type Hebrew letters.&lt;/P&gt;
&lt;P&gt;Please run next code by retyping the Hebrew letters:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test_heb;
   length ch $2 cx $4;
    ch = "א";  
    cx = put(ch,$hex4.);
    put ch= cx=;

    ch = "ת";  
    cx = put(ch,$hex4.);
    put ch= cx=;
run;   &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and please post the log of that run;&lt;/P&gt;
&lt;P&gt;That will let me know your environment&amp;nbsp; Hebrew hex range.&lt;/P&gt;</description>
    <pubDate>Fri, 15 Jan 2021 21:24:00 GMT</pubDate>
    <dc:creator>Shmuel</dc:creator>
    <dc:date>2021-01-15T21:24:00Z</dc:date>
    <item>
      <title>Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711533#M20894</link>
      <description>&lt;P&gt;Greetings:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(I'm using SAS 94 TS Level 1M3 on X64_8Home.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’m trying to include Hebrew text in an Annotate data set called ‘panel1’ below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;***&lt;/P&gt;&lt;P&gt;data panel1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;length function color $ 8 STYLE $ 18 text $ 100;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hsys='1'; xsys='1'; ysys='1';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;label(2,98,'05d005d705d505d605d905dd'x,black,0,0,3.2,'Arial/Unicode/italic’,6);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;***&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When included in Proc GPLOT the label statement will generate the following italicized Hebrew string:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;אחוזים&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that, when I have a lot of text, this method is very labour intensive. Is there a simple routine I can use in which I type the Hebrew string in the program and the routine converts it to Unicode?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 18:40:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711533#M20894</guid>
      <dc:creator>JonathanNitzan</dc:creator>
      <dc:date>2021-01-14T18:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711549#M20895</link>
      <description>&lt;P&gt;I have done some work about it in the past. The attached program may give you a hint.&lt;/P&gt;
&lt;P&gt;Do you need translation of a short strings (messages, labels etc.) and / or a mass of text given in a .txt file. Let me some more details of your needs and I will be happy to help.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data heb_encode(keep= ot str);
  retain i 1;
  heb = 'אבגדהוזחטיכךלמםנןסעפףצץקרשת';
  infile cards dlm='!';
  input str $6.;
  ot = substr(heb,i,2);
  i+2;
  output;
return;
cards;
=D7=90
=D7=91
=D7=92
=D7=93
=D7=94
=D7=95
=D7=96
=D7=97
=D7=98
=D7=99
=D7=9B
=D7=9A
=D7=9C
=D7=9E
=D7=9D
=D7=A0
=D7=9F
=D7=A1
=D7=A2
=D7=A4
=D7=A3
=D7=A6
=D7=A5
=D7=A7
=D7=A8
=D7=A9
=D7=AA
; run;

data cntl;
 set heb_encode;
     retain fmtname '$hebcvf';
     rename ot = start str=label;
run;
proc format lib=mydata cntlin=cntl; run;


data cntl;
 set heb_encode;
     retain fmtname '$cvfheb';
     rename str = start ot=label;
run;
proc format lib=mydata cntlin=cntl; run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I believe I can adapt above code to most of your needs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 20:35:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711549#M20895</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-14T20:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711565#M20896</link>
      <description>&lt;P&gt;Thank you Shmuel for the very quick reply and offer of help. To your question:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I need to convert short text lines only (to be used as series names, short descriptions of chart items, etc.).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. If possible, I would like to type the Hebrew text strings in the program itself and have your routine translate them to Unicode to be included in the Annotate data set.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 21:42:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711565#M20896</guid>
      <dc:creator>JonathanNitzan</dc:creator>
      <dc:date>2021-01-14T21:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711722#M20897</link>
      <description>&lt;P&gt;I have started to develop translation code but need some more information:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp; Do I understand correctly - you need some macro code to make the translation inside&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;sas statements, which means that running a data step will be not available?&lt;/P&gt;
&lt;P&gt;For example:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title "... %heb2unicode(אחוזים) ... ";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;2) You supplied next line in your first post:&lt;/P&gt;
&lt;PRE&gt;label(2,98,'05d005d705d505d605d905dd'x,black,0,0,3.2,'Arial/Unicode/italic’,6);&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; please check:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;- would it work correctly with double quotes instead single quotes ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;- would it work with code like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let ahuzim = 05d005d705d505d605d905dd;
label(2,98,"&amp;amp;ahuzim"x,black,0,0,3.2,'Arial/Unicode/italic’,6);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; If positive, my idea is to create a macro that generates macro variables with the unicode hex value you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3) Ascii code is one byte per character.&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; UTF8 Hebrew code is two-bytes per letter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; As much as I know 'א' is 'D790'x. I don't see such combination in you label line;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Can you check each encoded Hebrew letter what is its hex combination?&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Try by translating - using your method - the next Hebrew string:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; א ב ג ק ר ש ת&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2021 17:13:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711722#M20897</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-15T17:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711761#M20904</link>
      <description>Pay attention:&lt;BR /&gt;  א = 'D790'x is correct for windows (64bit OS)</description>
      <pubDate>Fri, 15 Jan 2021 19:39:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711761#M20904</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-15T19:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711778#M20908</link>
      <description>&lt;P&gt;I see that you type Hebrew letters.&lt;/P&gt;
&lt;P&gt;Please run next code by retyping the Hebrew letters:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test_heb;
   length ch $2 cx $4;
    ch = "א";  
    cx = put(ch,$hex4.);
    put ch= cx=;

    ch = "ת";  
    cx = put(ch,$hex4.);
    put ch= cx=;
run;   &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and please post the log of that run;&lt;/P&gt;
&lt;P&gt;That will let me know your environment&amp;nbsp; Hebrew hex range.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2021 21:24:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711778#M20908</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-15T21:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711800#M20909</link>
      <description>&lt;P&gt;Thank you Shmuel. Here are my answers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Yes, I'd like to input the Hebrew letters in the SAS code, similarly to the example you indicate. I'm not sure what you mean by 'running a data step will be not available'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. The label statement works correctly with double quotes (" "). Your second line of code returned the following three error messages:&lt;/P&gt;&lt;P&gt;ERROR: Undeclared array referenced: label.&lt;/P&gt;&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: +, =.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. For the Hebrew code I'm using &lt;A href="https://www.google.com/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=&amp;amp;ved=2ahUKEwjyluKc0dXtAhVNGlkFHWlvCx0QFjAAegQIAhAC&amp;amp;url=https%3A%2F%2Funicode.org%2Fcharts%2FPDF%2FU0590.pdf&amp;amp;usg=AOvVaw1B39liUDVByBbUrN2n3UVj" target="_blank"&gt;https://www.google.com/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=&amp;amp;ved=2ahUKEwjyluKc0dXtAhVNGlkFHWlvCx0QFjAAegQIAhAC&amp;amp;url=https%3A%2F%2Funicode.org%2Fcharts%2FPDF%2FU0590.pdf&amp;amp;usg=AOvVaw1B39liUDVByBbUrN2n3UVj&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2021 22:33:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711800#M20909</guid>
      <dc:creator>JonathanNitzan</dc:creator>
      <dc:date>2021-01-15T22:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711801#M20910</link>
      <description>&lt;P&gt;I ran your code and this is the resulting log:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1131  data test_heb;
1132     length ch $2 cx $4;
1133      ch = "?";
1134      cx = put(ch,$hex4.);
1135      put ch= cx=;
1136
1137      ch = "?";
1138      cx = put(ch,$hex4.);
1139      put ch= cx=;
1140  run;

ch=? cx=3F20
ch=? cx=3F20&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 15 Jan 2021 22:37:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711801#M20910</guid>
      <dc:creator>JonathanNitzan</dc:creator>
      <dc:date>2021-01-15T22:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711819#M20911</link>
      <description>&lt;P&gt;1) Technically it is not possible to run a new data step inside a current data step:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data step1;
 set anydata;
      .... sas statements ...
           data _null_;
               ... any helpful code ...
           run;
      ... more sas statements ...
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;2) Your answer:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; "&lt;EM&gt;&lt;SPAN&gt;The label statement works correctly with double quotes (" "). &lt;BR /&gt;&amp;nbsp; &amp;nbsp; Your second line of code returned the following three error&lt;/SPAN&gt;&lt;/EM&gt; messages:"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; The reason to the error messages - You cannot enter %LET&amp;nbsp;inside a PROC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Next time, in case of error, it will be helpful to get the full step log, not just&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; the messages.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Please run the code as in next template:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let ahuzim = ..... ;   
proc gplot ... ;
    ... statements ...
     label(2,98,"&amp;amp;ahuzim"x,black,0,0,3.2,'Arial/Unicode/italic’,6);
    ... more statements ...
run;
   &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;3) Excellent, now I have the encoding for translate output you need.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4) Did you re-typed the Hebrew letters using the keyboard or just copied the code&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;that I posted, just as is?&amp;nbsp;Do you use Hebrew keyboard to type Hebrew letters?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;It is &lt;U&gt;impossible&lt;/U&gt; that different letters will show the same hexadecimal value&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;STRONG&gt;cx = 3f20&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2021 02:22:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711819#M20911</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-16T02:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711820#M20912</link>
      <description>&lt;P&gt;1) that's true for PROC too - you can't use data step inside a PROC step like:&lt;BR /&gt;PROG GPLOT;&lt;BR /&gt;...... data _NULL_; ... any helpful code ...; run; ..&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2021 02:28:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711820#M20912</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-16T02:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to convert Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711867#M20917</link>
      <description>&lt;P&gt;Shmuel:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. For the two of us to be on the same page, I enclose here (1) the sas program file, (2) the sas dataset, and (3) the PDF version of the SVG output file (SVG format cannot be uploaded here).&lt;/P&gt;&lt;P&gt;2. Note that the enclosed program successfully uses your %let ahuzim macro.&lt;BR /&gt;3. Regarding the test_heb dataset below, I did type in the Hebrew letters as you asked, and the results are shown below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;LI-CODE lang="sas"&gt;data test_heb;
   length ch $2 cx $4;
    ch = "א";  
    cx = put(ch,$hex4.);
    put ch= cx=;

    ch = "ת";  
    cx = put(ch,$hex4.);
    put ch= cx=;
run;   &lt;/LI-CODE&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;3735  data test_heb;
3736     length ch $2 cx $4;
3737      ch = "?";
3738      cx = put(ch,$hex4.);
3739      put ch= cx=;
3740
3741      ch = "?";
3742      cx = put(ch,$hex4.);
3743      put ch= cx=;
3744  run;

ch=? cx=3F20
ch=? cx=3F20
NOTE: The data set WORK.TEST_HEB has 1 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2021 18:36:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711867#M20917</guid>
      <dc:creator>JonathanNitzan</dc:creator>
      <dc:date>2021-01-16T18:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to convert Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711889#M20918</link>
      <description>&lt;P&gt;I workd on two different methods.&lt;/P&gt;
&lt;P&gt;I tried to develop macro programs but was stucked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Relating to the log - I cannot understand why you got ch=? (instead ch=א / ch=ת);&lt;/P&gt;
&lt;P&gt;I ran the same code and expected to see:&lt;/P&gt;
&lt;PRE&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         data test_heb;
 74            length ch $2 cx $4;
 75             ch = "א";
 76             cx = put(ch,$hex4.);
 77             put ch= cx=;
 78         
 79             ch = "ת";
 80             cx = put(ch,$hex4.);
 81             put ch= cx=;
 82         run;
 
 ch=א cx=D790
 ch=ת cx=D7AA&lt;/PRE&gt;
&lt;P&gt;Finally I developed next code which may solve your problem.&lt;/P&gt;
&lt;P&gt;The program creates macro variables with names you assign,&lt;/P&gt;
&lt;P&gt;so you cane use them again and again in any graph you generate.&lt;/P&gt;
&lt;P&gt;You can %include&amp;nbsp; the program to your autoexec.sas and all macro variables&lt;/P&gt;
&lt;P&gt;will be available to you thru the sas session.&lt;/P&gt;
&lt;P&gt;Other benefits are:&lt;/P&gt;
&lt;P&gt;- easy to add strings to translate&lt;/P&gt;
&lt;P&gt;- less coding in graph developing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try next code and don't hesitate to post if any issue.&lt;/P&gt;
&lt;P&gt;Issues that can be:&lt;/P&gt;
&lt;P&gt;1) special characters that need be translated&lt;/P&gt;
&lt;P&gt;2) order of substrings (such as: xxx 2 instead 2 xxx ?! )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* tarnslate hebrew text to UNICODE */
%let kbd_aleph = א;    /* RETYPE with local keyboard */
%let uni_aleph = 1488; /* ALEF uncode = '05D0'x */
%let ch_len = 2;

data Heb_Table;
  length string_in string_out $130     /* Hebrew 2 bytes/char include spaces */
         aleph $2;
  retain aleph "&amp;amp;kbd_aleph" delta;
  if _N_=1 then do;
     delta = rank(substr(aleph,1,1))*256 + rank(substr(aleph,2,1)) - &amp;amp;uni_aleph;
     put DELTA=;
  end;
  
  infile datalines truncover dlm='09'x; /* use TAB as delimter betweem varname and string */
  input varname $ string_in :$char120.;
  
  len = length(string_in);
  string_out = '';
  
  i=1;
  do until(i ge length(string_in));
     if substr(string_in,i,1) = substr(aleph,1,1) 
        then by=2;
        else by=1;
     char = substr(string_in,i,by);
     if by=2 then do;
        cn = rank(substr(char,1,1))*256 + rank(substr(char,2,1)) - delta; /* &amp;amp;uni_aleph; */
        ch = put(byte(int(cn/256)) || byte(int(cn-int(cn/256)*256)), $hex4.);
     end;
     else ch = put(strip(char), $hex2.);
     
     string_out = cats(string_out,ch);
     i = i + by;
  end;
  call symput(varname,strip(string_out));
  keep varname string_out;
datalines;     /*** use TAB between VARNAME and the string to translate ***/
ahuzim	אחוזים
std1	+ 2 סטיות תקן
std2	+ סטית תקן
std3	- סטית תקן
std4	- 2 סטיות תקן
avg		ממוצע
mikra	מקרא
month	חודש
total	סה"כ
;
run;
 
%put ahuzim = &amp;amp;ahuzim;
%put std1 = &amp;amp;std1;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;created macro variables as displayed in the log:&lt;/P&gt;
&lt;PRE&gt; 121        run;
 122        
 123        %put ahuzim = &amp;amp;ahuzim;
 ahuzim = 05D005D705D505D605D905DD
 124        %put std1 = &amp;amp;std1;
 std1 = 2B3205E105D805D905D505EA05EA05E705DF
 125        
 &lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2021 22:00:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711889#M20918</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-16T22:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711922#M20919</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/77528"&gt;@JonathanNitzan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check out the code below. You may also note there is a "SAS Users in Israel" community for Hebrew related questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
    win1255name = "אבג דהו";
    put win1255name $hex20.;
    /* convert to Hebrew DOS */
    pcoemname = kcvt(win1255name,"pcoem862");
    put pcoemname $hex20.;
    /* convert to UTF8 */
    utfname = kcvt(win1255name,"utf8");
    put utfname $hex20.;
    /* convert to Unicode NCR */
    utf8ncr = unicodec(win1255name,"NCR");
    put utf8ncr ;
    /* convert to Unicode ESC */
    utf8esc = unicodec(win1255name,"ESC");
    put utf8esc ;
    /* convert back to Hebrew using unicode or kcvt */
    win1255name2 = unicode(utfname,"utf8");
    put win1255name2 $hex20.;
run;

E0E1E220E3E4E5                                 &amp;lt;- Win 1255 Hebrew
80818220838485202020                           &amp;lt;- DOS Hebrew
D790D791D79220D793D7                           &amp;lt;- UTF8 Hebrew
E0E1E220E3E4E5202020                           &amp;lt;- Win 1255 Hebrew
&amp;amp;#1488;&amp;amp;#1489;&amp;amp;#1490; &amp;amp;#1491;&amp;amp;#1492;&amp;amp;#1493;    &amp;lt;- UTF8 NCR
\u05D0\u05D1\u05D2 \u05D3\u05D4\u05D5          &amp;lt;- UTF8 ESC
E0E1E220E3E4E5202020
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Jan 2021 07:37:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711922#M20919</guid>
      <dc:creator>EyalGonen</dc:creator>
      <dc:date>2021-01-17T07:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711924#M20920</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/77528"&gt;@JonathanNitzan&lt;/a&gt;&amp;nbsp;, In case a string in the form of ENCODEC function output, like&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;92  %put Ahuzim=&amp;amp;ahuzim;
 Ahuzim=\u05D0\u05D7\u05D5\u05D6\u05D9\u05DD&lt;/PRE&gt;
&lt;P&gt;is acceptable by the &lt;STRONG&gt;%label&amp;nbsp;&lt;/STRONG&gt;macro you use, it simplifies the code and the maintenance is by SAS International co. Adapted code should be:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*=====================================*/
/* Eyal Gonen - using encodec function */ 

data test;
  length strin: $80;
  infile datalines truncover dlm='09'x; /* use TAB as delimter betweem varname and string */
  input varname $ string_in :$char80.;
  string_out = unicodec(string_in);
  call symput(varname,strip(string_out));
  keep varname string_out;
datalines;     /*** use TAB between VARNAME and the string to translate ***/
ahuzim	אחוזים
std1	+ 2 סטיות תקן
std2	+ סטית תקן
std3	- סטית תקן
std4	- 2 סטיות תקן
avg		ממוצע
mikra	מקרא
month	חודש
total	סה"כ
;
run;
%put Ahuzim=&amp;amp;ahuzim; 
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 08:16:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711924#M20920</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-17T08:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711970#M20921</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/77528"&gt;@JonathanNitzan&lt;/a&gt;&amp;nbsp;I edited my last code. It supplies macro variables in the form you need:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
  length strin: $80;
  infile datalines truncover dlm='09'x; /* use TAB as delimter betweem varname and string */
  input varname $ string_in :$char80.;
  string_out = compress(unicodec(string_in), '\u');
  call symput(varname,strip(string_out));
  keep varname string_out;
datalines;     /*** use TAB between VARNAME and the string to translate ***/
ahuzim	אחוזים
std1	+ 2 סטיות תקן
std2	+ סטית תקן
std3	- סטית תקן
std4	- 2 סטיות תקן
avg		ממוצע
mikra	מקרא
month	חודש
total	סה"כ
;
run;
%put Ahuzim=&amp;amp;ahuzim; 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Jan 2021 15:51:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711970#M20921</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-17T15:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711983#M20922</link>
      <description>&lt;P&gt;Hi Eyal:&lt;/P&gt;&lt;P&gt;I ran your code (after retyping the Hebrew letters) and this is the log I get:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;2034  data _null_;
2035      win1255name = "??? ???";
2036      put win1255name $hex20.;
2037      /* convert to Hebrew DOS */
2038      pcoemname = kcvt(win1255name,"pcoem862");
2039      put pcoemname $hex20.;
2040      /* convert to UTF8 */
2041      utfname = kcvt(win1255name,"utf8");
2042      put utfname $hex20.;
2043      /* convert to Unicode NCR */
2044      utf8ncr = unicodec(win1255name,"NCR");
2045      put utf8ncr ;
2046      /* convert to Unicode ESC */
2047      utf8esc = unicodec(win1255name,"ESC");
2048      put utf8esc ;
2049      /* convert back to Hebrew using unicode or kcvt */
2050      win1255name2 = unicode(utfname,"utf8");
2051      put win1255name2 $hex20.;
2052  run;

3F3F3F203F3F3F
3F3F3F203F3F3F202020
3F3F3F203F3F3F202020
??? ???
??? ???
3F3F3F203F3F3F202020
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Jan 2021 21:04:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711983#M20922</guid>
      <dc:creator>JonathanNitzan</dc:creator>
      <dc:date>2021-01-17T21:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711985#M20923</link>
      <description>&lt;P&gt;Shmuel: This is the log I get from running your code (after retyping אחוזים and inserting a tab as needed). There must be something amiss in my system or in what I'm doing...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;2101  data test;
2102    length strin: $80;
2103    infile datalines truncover dlm='09'x; /* use TAB as delimter betweem varname and string
2103! */
2104    input varname $ string_in :$char80.;
2105    string_out = compress(unicodec(string_in), '\u');
2106    call symput(varname,strip(string_out));
2107    keep varname string_out;
2108  datalines;

NOTE: The data set WORK.TEST has 9 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.00 seconds


2108!                /*** use TAB between VARNAME and the string to translate ***/
2118  ;
2119  run;
2120  %put Ahuzim=&amp;amp;ahuzim;
Ahuzim=&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Jan 2021 21:12:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711985#M20923</guid>
      <dc:creator>JonathanNitzan</dc:creator>
      <dc:date>2021-01-17T21:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711991#M20924</link>
      <description>&lt;P&gt;It is difficult to guess why you got "Ahuzim=&amp;nbsp; &amp;nbsp; " ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post the code as submitted. Next is my log - using SAS UE:&lt;/P&gt;
&lt;PRE&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         data test;
 74           length strin: $80;
 75           infile datalines truncover dlm='09'x; /* use TAB as delimter betweem varname and string */
 76           input varname $ string_in :$char80.;
 77           string_out = compress(unicodec(string_in), '\u');
 78           call symput(varname,strip(string_out));
 79           keep varname string_out;
 80         datalines;
 
 NOTE: The data set WORK.TEST has 9 observations and 2 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.03 seconds
       cpu time            0.02 seconds
       
 
 80       !                /*** use TAB between VARNAME and the string to translate ***/
 90         ;
 91         run;
 92         %put Ahuzim = &amp;amp;ahuzim;
 Ahuzim = 05D005D705D505D605D905DD
 93         %put STD1 = &amp;amp;std1;
 STD1 = + 2 05E105D805D905D505EA 05EA05E705DF
 94         %put MIKRA = &amp;amp;mikra;
 MIKRA = 05DE05E705E805D0
 95         
 96         
 97         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 109        &lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 21:44:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711991#M20924</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-17T21:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711992#M20925</link>
      <description>You can brows also the created dataset TEST and check does string_out contains the expected data</description>
      <pubDate>Sun, 17 Jan 2021 21:47:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711992#M20925</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-17T21:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a routine to converte Hebrew text to Unicode in an Annotate data set?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711993#M20926</link>
      <description>What sas platform are you using? and what sas version do you run?</description>
      <pubDate>Sun, 17 Jan 2021 21:51:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-a-routine-to-converte-Hebrew-text-to-Unicode-in-an/m-p/711993#M20926</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2021-01-17T21:51:16Z</dc:date>
    </item>
  </channel>
</rss>

