208 questions
1 vote
0 answers
54 views
feck:profanities() function handling extended ascii characters
I use feck:profanities to identify the profanities. this function correctly works for the normal text messages. But, when the message has extended ascii characters though the message contains a ...
1 vote
1 answer
27 views
Differentiate two Cyrillic strings
When I run a query for this string in SQLite with these entries in Cyrillic in a text field, I only find one. When I put the two strings in two different cells in Excel and search, it only finds the ...
0 votes
0 answers
88 views
Problems importing iPad text with quotes into an Access database
I use DoCmd.TransferText acImportFixed successfully to import text from an iPad to windows via iCloud drive. The single and double quotes don't convert correctly. Example: let's try a "typical&...
0 votes
1 answer
193 views
Code39 full ascii
I'm trying to configure a barcode code39 full ascii, it seems to work ok except for the char #, I've tried font libre barcode code 39, azalea font and barcode 39, all with the same result. When headed ...
1 vote
2 answers
119 views
how can i compare characters from the Extended ASCII Codes that are stored in a character array?
I'm using the ASCII code 219 to print out "█" in a character array. however I would like to check the value of that cell later on in the program using a if statment. this is what i currently ...
1 vote
1 answer
257 views
How to use extended ASCII chars in SMTP RCPT TO command
I'm getting the following errors when trying to send an email to a recipient with extended ASCII characters, on my Postfix server, using PowerShell or the System.Web.Mail.SmtpMail .NET class: The ...
0 votes
0 answers
350 views
Reading ASCII data in R
I previously asked here about reading .RAW files in R. I have looked for more details on these files and have found this documentation: And this: I do not have experience with ASCII files but I have ...
0 votes
1 answer
142 views
Batch files - why does a funny ASCII character appear when redirecting output of tree command to a file?
The following code: if "%DispMode%"=="tree" ( tree >temp findstr /b /v /c:"F" temp >>temp2 del temp >nul findstr /b /v /c:"V" temp2 >>temp ...
2 votes
2 answers
493 views
Why can't I print the decimal value of a extended ASCII char like 'Ç'? in C
First, in this C project we have some conditions as far as writing code: I can´t declare a variable and attribute a value to it on the same line of code and we are only allowed to use while loops. ...
0 votes
1 answer
289 views
Including extended ASCII with regex and sed
I want to select all characters, including extended ASCII inside a group of regex using sed. Next works: echo -e "TO BE REMOVED. THIS NOT. TO BE REMOVED" | sed -E 's/(TO BE REMOVED)(.{12})(...
0 votes
0 answers
736 views
What is the use of extended ASCII? [duplicate]
From here, it’s clear that char can't store extended ASCII values, so we use unsigned char. The basic ASCII values are in the range 0 to 127. The rest part of the ASCII is known as extended ASCII. ...
0 votes
3 answers
2k views
Converting Extended ASCII characters in Dart
My flutter app retrieves information via a REST interface which can contain Extended ASCII characters e.g. e-acute 0xe9. How can I convert this into UTF-8 (e.g 0xc3 0xa9) so that it displays correctly?...
1 vote
1 answer
448 views
Extended ASCII in tkinter
I'm trying to create an inspiration app, which displays random words. it works for alpha characters, but when a word has characters like öäü or ß in them, it just displays random gibberish. Wanted ...
1 vote
0 answers
194 views
Rails console (in docker-compose) hangs when I try to paste a string with an extended character such as "Vötest"
On my Mac: Copy the string n = "Vötest" to my clipboard from my code editor (Sublimetext 3.2.2) Launch Rails console rails c irb(main):001:0> Attempt to paste the string to ...
0 votes
0 answers
794 views
How can I view non-ascii characters in ascii editor
I'm very new to character encoding, I never really stopped to analyze how it works. My question is as follows, I have a text editor, for example the windows notepad, when I write a file in ascii ...