Close

What are you looking for?

cancel
Showing results for 
Search instead for 
Did you mean: 

Samsung galaxy Tab S7 can't type tilde or caret

(Topic created on: 29-09-2021 06:26 PM)
1022 Views
atcasanova
Apprentice
Options

Hi

I've just bought a Galaxy Tab s7 which I intended to use for programming and have tried a series of external keyboards.

The issue is that the tablet won't use the correct bytes for the ˜ and ˆ characters. I've done some debugging and it uses hex bytes cb9c for tilde (instead of 7e) and cb86 for caret (instead of 5e) and no compilers or interpreters will understand that. Those characters are widely using in programming (specially when dealing with regexes).

So I would like to know whether or not Samsung sees this as a problem and intends to fix it, because if don't i'll have to return my brand new tablet.

 

Below are the hex representation for my tablet's response for the tilde and caret keys:

echo -n '˜' | xxd 
00000000: cb9c

echo -n ˆ|xxd
00000000: cb86

and now the "correct" bytes:

echo -n '~'|xxd
00000000: 7e

 echo -n '^'|xxd
00000000: 5e

4 REPLIES 4
atcasanova
Apprentice
Options

Up. Any mods? 

0 Likes
atcasanova
Apprentice
Options

Is there anywhere i can get proper support for this issue? This is ridiculous.

0 Likes
pmvision
First Poster
Options

Maybe try the Good Lock /Family /Keys Cafe app.

0 Likes
mateuszdrab
First Poster
Options
I'm having the same issue with
ˋ and `
The first is the expected character and the second is seemingly the same, but different character code.
0 Likes