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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,UTF8 X-Google-Thread: 103376,cd571eec0e67817a X-Google-Attributes: gid103376,public From: Florian Weimer Subject: Re: wide character Date: 1999/10/30 Message-ID: <87puxxvzeb.fsf@deneb.cygnus.argh.org>#1/1 X-Deja-AN: 542391940 Content-Transfer-Encoding: 8bit References: <3819EA39.60B85317@eunet.at> Mail-Copies-To: never Content-Type: text/plain; charset=utf-8 X-Complaints-To: abuse@cygnus.argh.org X-Trace: deneb.cygnus.argh.org 941284364 17708 192.168.1.2 (30 Oct 1999 11:52:44 GMT) Organization: Penguin on board User-Agent: Gnus/5.07009701 (Pterodactyl Gnus v0.97.1) Emacs/20.4 Mime-Version: 1.0 NNTP-Posting-Date: 30 Oct 1999 11:52:44 GMT Newsgroups: comp.lang.ada Date: 1999-10-30T11:52:44+00:00 List-Id: Bernhard Rumpler writes: > how can I get a wide character for an 'and-sign' (ISO 10646: 22c0)? > (i need to assign it to a string afterwards) Big_Wedge : constant Wide_Character := '⋀'; If your development system doesn't suppport Unicode, you'll have to use something like this instead: Big_Wedge : constant Wide_Character := Wide_Character'Val (16#22C0#);