octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #47571] Problem entering non-ASCII-character (


From: Nicholas Jankowski
Subject: [Octave-bug-tracker] [bug #47571] Problem entering non-ASCII-character (umlaut) in command line
Date: Thu, 8 Dec 2022 14:25:45 -0500 (EST)

Follow-up Comment #46, bug #47571 (project octave):

updating comment #19 for Matlab 2022b (all entered with copy/paste)

>> tmp = 'Müller'
tmp =
    'Müller'
>> tmp+0
ans =
    77   252   108   108   101   114
>> 'Müller' == 'Möller'
ans =
  1×6 logical array
   1   0   1   1   1   1
>> char([195 188])
ans =
    'ü'
>> str = '囊囂囇囒' + 0
str =
       22218       22210       22215       22226
>>  str = 'ಠ_ಠ' + 0
str =
        3232          95        3232

(apparently my screen font doesn't display 'ಠ_ಠ', it just looks like
<square>_<square>, but copy paste back into here retains the correct
characters.

in Octave 8.0.1 (hg id: 24bd675bceab) with MXE Default, trying to use the
ALT-codes when possible, copy/paste for others:


>> tmp = 'Müller'
tmp = Müller
>> tmp+0
ans =

    77   195   188   108   108   101   114

>> 'Müller' == 'Möller'
ans =

  1  1  0  1  1  1  1

>> char([195 188])
ans = ü
>> str = '¥¥¥¥¥¥¥¥' + 0
str =

 Columns 1 through 12:

   239   191   165   155   138   239   191   165   155   130   239   191

 Columns 13 through 20:

   165   155   135   239   191   165   155   146

>> str = '¢¢_¢¢' + 0
str =

   239   191   160   178   160    95   239   191   160   178   160
 

(those last two are copy/paste only as I don't actually know if they can be
done through alt-codes)


    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?47571>

_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]