LINUX.ORG.RU

Ответ на: комментарий от anonymous

Может быть, все-таки так?

#include<stdio.h> int main() { unsigned char c; for(c=0;c<=0xff;c++) printf("Символ %d -> %c\n", (int)c, c); return 0; }

anonymous
()
Ответ на: комментарий от anonymous

ТОлько таким способом нельзя увидеть коды и символы в utf-8. Может проще командой dumpkeys?

PS Я не уверен.

OxiD ★★★★
()

уважаемый аноним, позвольте научить вас вытирать себе попку, Ок?

у известной вам команды man есть замечательный ключик -k:

> man -k encoding|grep -v -E "(Tcl|X)"
MIME::Base64 (3pm) - Encoding and decoding of base64 strings
MIME::QuotedPrint (3pm) - Encoding and decoding of quoted-printable strings
QGbkCodec [qgbkcodec] (3qt) - This class provides conversion to and from the Chinese GBK encoding
QTextCodec [qtextcodec] (3qt) - Provides conversion between text encodings
QTsciiCodec [qtsciicodec] (3qt) - Conversion to and from the Tamil TSCII encoding
UTF-8 [utf-8] (7) - an ASCII compatible multi-byte Unicode encoding
charmap (5) - character symbols to define character encodings
encoding (n) - Manipulate encodings
iconv (1) - Convert encoding of given files from one encoding to another
mimencode (1) - Translate to and from mail-oriented encoding formats
mimencode [mmencode] (1) - Translate to and from mail-oriented encoding formats


откуда понятно, что мы что-нибудь обнаружим в charmap(5). Так и есть:

> man charmap
...
FILES
/usr/share/i18n/charmaps/*


Кстати утилитка iconv(1) бывает весьма полезной.

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.