From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,1c4b8fdfa762b2bb X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-05 06:12:13 PST Path: supernews.google.com!sn-xit-03!supernews.com!freenix!fr.clara.net!heighliner.fr.clara.net!proxad.net!feeder2.proxad.net!nnrp3.proxad.net.POSTED!not-for-mail Message-ID: <3ACC6E83.5B860AC5@free.fr> From: Jean-Marc Bourguet X-Mailer: Mozilla 4.76 [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en, French, fr MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Hebrew language character set References: <3ACA11B0.9AAFDDDD@lmco.com> <3ACB85DF.9E6DBD03@lmco.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 05 Apr 2001 13:11:43 GMT NNTP-Posting-Host: 158.140.208.29 X-Complaints-To: abuse@proxad.net X-Trace: nnrp3.proxad.net 986476303 158.140.208.29 (Thu, 05 Apr 2001 15:11:43 CEST) NNTP-Posting-Date: Thu, 05 Apr 2001 15:11:43 CEST Organization: Guest of ProXad - France Xref: supernews.google.com comp.lang.ada:6504 Date: 2001-04-05T13:11:43+00:00 List-Id: Paul Storm wrote: > > For those that are interested, I produce code that (I think) produces > a Hebrew character. Here is the code: > > with Ada.Characters.Handling; use Ada.Characters.Handling; > with Ada.Wide_Text_IO; use Ada.Wide_Text_IO; > > procedure aleph is > begin > Ada.Wide_Text_IO.Put (Item => Wide_Character'Val(1488)); > end aleph; > > end of code > > Here is the output. > > ["05D0"] > > end of output > > 1448 decimal is 05D0 hexidecimal. > > I said think produces. I am thinking that my display showed the > character as a code due to the lack of support for that character > (set) on my system. Can anyone confirm this for me? Does that make > sense? I think this is one of the way gnat produces (and accept) wide character. You should be able to choose the format you want with the FORM parameter. Check the reference manual, there is a whole section on wide characters. -- Jean-Marc