I´m running Cycas on Linux (Ubuntu 9.10). Inputting accented characters into Cycas is a little difficult, since most applications on Ubuntu use UTF-8, but Cycas does not. Another application that does not use UTF-8 is NEdit (
www.nedit.org). Here´s a somewhat easy way to generate all printable "high" ASCII characters (above 127) using Perl and NEdit:
1. In an xterm, use Perl to generate a list of printable high ASCII characters:
perl -e ´for(0xA0..0xFF){$c=chr($_); printf "0x%02X %03d $c
", $_, $_}´ > /tmp/hiascii
2. Open the file with NEdit:
nedit /tmp/hiascii
Now you can double-click on the character in NEdit to select it, and middle-click in the text box in Cycas to paste it. It´s a pain, but until Cycas get UTF-8 support, it´s the best solution I´ve found.
Remember to use a font that has the proper glyphs for the character to show up.