From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=0.0 required=3.0 tests=BAYES_40,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.6 X-Received: by 2002:ac8:7b52:: with SMTP id m18mr2391806qtu.128.1631368300829; Sat, 11 Sep 2021 06:51:40 -0700 (PDT) X-Received: by 2002:a25:2ccf:: with SMTP id s198mr3537013ybs.452.1631368300698; Sat, 11 Sep 2021 06:51:40 -0700 (PDT) Path: eternal-september.org!reader02.eternal-september.org!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sat, 11 Sep 2021 06:51:40 -0700 (PDT) In-Reply-To: <4b1683a1-6ad5-4692-b671-807db5b51f27n@googlegroups.com> Injection-Info: google-groups.googlegroups.com; posting-host=94.31.101.123; posting-account=rmHyLAoAAADSQmMWJF0a_815Fdd96RDf NNTP-Posting-Host: 94.31.101.123 References: <06dbbe8e-737e-44c2-9e9c-40e8f8aade2fn@googlegroups.com> <234ee351-3abb-445e-9d34-d5abd7a8a9b6n@googlegroups.com> <4b1683a1-6ad5-4692-b671-807db5b51f27n@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: =?UTF-8?B?UmU6IEd0a0FkYSBhbmQg4oKs?= From: AdaMagica Injection-Date: Sat, 11 Sep 2021 13:51:40 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader02.eternal-september.org comp.lang.ada:62706 List-Id: Being German, I need umlauts and =E2=82=AC together in strings to write the= m to some labels. Using Character'Val (16#E2#) & Character'Val (16#82#) & Character'Val (16#A= C#)=20 complicates things, since umlauts are above 255 and need transformation to = UTF8, whereas the euro sequence above is already in UTF8 and must not again be tr= ansformed. What a mess!