タグ

2007年4月11日のブックマーク (3件)

  • 文字コードの話

    稿は、1996年に筆者が大学の所属サークルの機関誌に寄稿した記事をもとに加筆訂正したものです。(最終更新 1999.7.31) 目次 はじめに 第1章 日語のコード体系 第2章 ASCIIと1バイト文字コード 第3章 JIS漢字コードとエンコーディング法 第4章 ISO 2022 第5章 ISO 2022の実例 第6章 中国語・韓国語の文字コード 第7章 ISO 10646とUnicode おわりに 参考文献 はじめに ASCIIだけで用が足りるアメリカと違って、 私たちは日語を扱わなくてはならないため、 より深く文字コードの問題と関わらざるをえません。 それでも、MS-DOS/WindowsMacを使う限りでは、 ASCIIとシフトJIS(たまにJIS)を知っていれば済みますが、 UNIXやインターネットを使い始めると、 JIS・EUC・シフトJISとさまざまな日語コードに頭を

    FOCKER
    FOCKER 2007/04/11
    文字コード
  • ASCII Table - ASCII Character Codes, HTML, Octal, Hex, Decimal

    ASCII TableASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation of a character such as 'a' or '@' or an action of some sort. ASCII was developed a long time ago and now the non-printing characters are rarely used for their original purpose. Below is the ASCII character table and this includes de

    FOCKER
    FOCKER 2007/04/11
    文字コード
  • JSASM the x86 Javascript Assembler

    Assemble Save Save requires a local system and wscript. MOV AH, 00 # Accept a key and write it to the screen. INT 16 # Hit Q to quit CMP AL, 61 JB 06 #comments are allowed CMP AL, 7A # yep, any comment is allowed JA 02 ;and yes, as of now there is no comment pre-symbol AND AL, DF just append your comment MOV DL, AL MOV AH, 02 INT 21 CMP AL, 51 JNZ E8 MOV AL, 00 MOV AH, 4C INT 21

    FOCKER
    FOCKER 2007/04/11
    javascript アセンブラ