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 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-04 15:02:25 PST Path: supernews.google.com!sn-xit-03!supernews.com!logbridge.uoregon.edu!hammer.uoregon.edu!enews.sgi.com!coop.net!newsfeed1.global.lmco.com!svlnews.lmms.lmco.com!not-for-mail From: Paul Storm Newsgroups: comp.lang.ada Subject: Re: Hebrew language character set Date: Wed, 04 Apr 2001 13:36:47 -0800 Organization: rse Message-ID: <3ACB85DF.9E6DBD03@lmco.com> References: <3ACA11B0.9AAFDDDD@lmco.com> NNTP-Posting-Host: 129.197.210.20 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.5 [en] (WinNT; U) X-Accept-Language: en Xref: supernews.google.com comp.lang.ada:6479 Date: 2001-04-04T13:36:47-08:00 List-Id: 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?