Lower ASCII characters.


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Lower ASCII characters.
# 1  
Old 07-27-2019
Lower ASCII characters.

Hi,


I'm writing a BBS telnet program. I'm having issues with it not displaying lower ASCII characters. For example, instead of displaying the "smiley face" character (Ctrl-B), it displays ^B. Is this because i'm using Ncurses? If so, is there any way around this?



Thanks.
# 2  
Old 07-27-2019
Control B in standard ASCII (STX) is decimal 02 or ^B according to the list of ASCII values. Not a smiley face.
Windows has different keyboard setups from UNIX. In UNIX they are called locales. What you see is standard, the Windows smiley or whatever is Windows only, for what you are doing.

I am assuming you are telnet to another unix box. If not, what you see when you type on a UNIX machine can be different in a DOS window. Telnet also responds to some keystrokes as well instead of just printing them. Be careful. Read your man page for telnet to see what keystrokes (or combinations) have meaning.

One way to get around this:
To get colors and other effects requires that the both terminals in the conversation use ANSI escape sequences:
Codes:
ansi codes
Getting terminal to work for you:
ANSI escape code - Wikipedia

Last edited by jim mcnamara; 07-27-2019 at 07:42 PM..
# 3  
Old 07-27-2019
Thank you for the quick reply. Remember that old DOS game, Kroz? The ASCII character that is the player, is the "smiley face" i'm referring to.

--- Post updated at 11:56 PM ---

And also, that "smiley face" i'm referring to, does display in Linux... Just not with my code.
# 4  
Old 07-28-2019
Hi ignatius...
If I am reading your post correctly it seems you are expecting the built-in CP 437, default IBM CGA graphics card characters to work.
MS-DOS, IBM-DOS and others could access these and also DOS extended characters too but UNIX/Linux/Minix/OSX etc... are not the same animals.
The characters were also available on much, much later graphics cards but AFAIK they are not readily available via an 8 bit code page any more.

The industry has evolved from Code Pages to UNICODE so you will have to search for the characters under these conditions, IF, that is what you are after.
As Jim says the control characters do other things inside the *NIX environment.

To check the smiley face you see in Linux do this:
_Copy_the_graphic_ and do the next:
hexdump -C <<< _paste_the_graphic_ and enter it.
And post the results to let us see it.

Hope this helps.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Grep to remove non-ASCII characters

I have been having an encoding problem that I need to solve. I have an 4-column tab-separated file: I need to remove all of the lines that contain the string 'vis-à-vis' achiever-n vis-à-vis+ns-j+vp oppose-v 1 achiever-n vis-à-vis+ns-the+vg assess-v 1 administrator-n ... (4 Replies)
Discussion started by: owwow14
4 Replies

2. Shell Programming and Scripting

Removing these non-ASCII characters from a file

Hi, I have many text files which contain some non-ASCII characters. I attach the screenshots of one of the files for people to have a look at. The issue is even after issuing the non-ASCII removal commands one of the characters does not go away. The character that goes away is the black one with a... (2 Replies)
Discussion started by: shoaibjameel123
2 Replies

3. Shell Programming and Scripting

New line characters in Ascii file

I am having a file(1234.txt) downloaded from windows server (in Ascii format).However when i ftp this file to Unix server and try to work with it..i am unable to do anything.When i try to open the file using vi editor the file opens in the following format ... @ @ @ @ @ @ @ @... (4 Replies)
Discussion started by: appu2176
4 Replies

4. Shell Programming and Scripting

convert ascii values into ascii characters

Hi gurus, I have a file in unix with ascii values. I need to convert all the ascii values in the file to ascii characters. File contains nearly 20000 records with ascii values. (10 Replies)
Discussion started by: sandeeppvk
10 Replies

5. UNIX for Dummies Questions & Answers

Perl - converting selected characters to upper/lower case

Using STDIN, how can I use perl to take an input string, with all lower case letters in the first five characters, and convert them to uppercase... then take all uppercase letters in the second five characters and convert them to lowercase. Example: MichaelSmith to michaELSMIth Thank you! (2 Replies)
Discussion started by: doubleminus
2 Replies

6. UNIX for Dummies Questions & Answers

Sed - Lower case single characters

Hello, I have a file where I am supposed to convert all the single i characters to uppercase, but when I try, it converts all the i's inside of words to uppercase as well. I tried doing: cat filename | sed 's/i/I/g' but that obviously does not work. Any help would be greatly... (6 Replies)
Discussion started by: zlindner
6 Replies

7. Shell Programming and Scripting

Multibyte characters to ASCII

Hello, Is there any UNIX utility/command/executable that will convert mutlibyte characters to standard single byte ASCII characters in a given file? and Is there any UNIX utility/command/executable that will recognize multibyte characters in a given file name? The typical multibyte... (8 Replies)
Discussion started by: jerardfjay
8 Replies

8. HP-UX

Hex characters of ascii file

Hi, Whats the command or how do you display the hexadecimal characters of an ascii file. thanks Bud (2 Replies)
Discussion started by: budrito
2 Replies

9. Shell Programming and Scripting

Replace characters in a string using their ascii value

Hi All, In the HP Unix that i'm using when i initialise a string as Stalled="'30¬G'" Stalled=$Stalled" '30¬C'", it is taking the character ¬ as a comma. I need to grep for 30¬G 30¬C in a file and take its count. But since this character ¬ is not being understood, the count returns a zero. The... (2 Replies)
Discussion started by: roops
2 Replies

10. Programming

stupid question about ascii characters

i know it's out there, but I cannot remember how to check if a given ascii character string contains all digits or not ... any ideas? ie...function("123") --> OK function("NOT_A_NUMBER") --> returns error thanks!! (2 Replies)
Discussion started by: jalburger
2 Replies
Login or Register to Ask a Question