Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How To Use Diacriticals?

Status
Not open for further replies.

Msolar

Programmer
Apr 15, 2002
8
US
I need to type the lower-case character n with the diacritical tilde over top of it. In Windows it's easy using Alt+164 (on the number keypad). This character will be used for part of a filename as well as in a text document. Any suggestions? Thanks!
 
This one ?
echo "\0361"

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Thanks - can't tell if it's correct because the character that our echo displays is a plus sign with a minus underneath. That happens to be the character I got when I tried to ftp the "tilde n" character from Windows to AIX.
Looks like you're on the right track, tho.
 
I got it to be a printable character (like I want) by using echo "\0244"
Let me know if you think that's correct. Now the question is: How can I actually create the filename knowing this octal code? Thanks
 
On most modern Unix Oss support some type of language internalization. I am more familiar with Sun, but usually one can use an environment variable to change the display character set and also set the default system character set. The language pack sometimes needs to be installed, however.

eugene
 
Are you trying to display on an xterm/dtterm/terminal of some sort or in a dialog box? The encodings appear to be different sometimes, especially for terminal windows. They're normally the same in graphics.
 
Thanks. I'm just using a telnet to the server on the default term. The display isn't in a dialog; simply from ls command.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top