Variable: japanese-alpha-numeric-table

japanese-alpha-numeric-table is a variable defined in japan-util.el.gz.

Value

((65296 . 48) (65297 . 49) (65298 . 50) (65299 . 51) (65300 . 52)
 (65301 . 53) (65302 . 54) (65303 . 55) (65304 . 56) (65305 . 57)
 (65313 . 65) (65314 . 66) (65315 . 67) (65316 . 68) (65317 . 69)
 (65318 . 70) (65319 . 71) (65320 . 72) (65321 . 73) (65322 . 74)
 (65323 . 75) (65324 . 76) (65325 . 77) (65326 . 78) (65327 . 79)
 (65328 . 80) (65329 . 81) (65330 . 82) (65331 . 83) (65332 . 84)
 (65333 . 85) (65334 . 86) (65335 . 87) (65336 . 88) (65337 . 89)
 (65338 . 90) (65345 . 97) (65346 . 98) (65347 . 99) (65348 . 100)
 (65349 . 101) (65350 . 102) (65351 . 103) (65352 . 104) (65353 . 105)
 (65354 . 106) (65355 . 107) (65356 . 108) (65357 . 109) (65358 . 110)
 (65359 . 111) (65360 . 112) (65361 . 113) (65362 . 114) (65363 . 115)
 (65364 . 116) (65365 . 117) (65366 . 118) (65367 . 119) (65368 . 120)
 (65369 . 121) (65370 . 122))

Documentation

Japanese JISX0208 alpha numeric character table.

Each element is of the form (ALPHANUMERIC . ASCII), where ALPHANUMERIC belongs to japanese-jisx0208, ASCII belongs to ascii.

Source Code

;; Defined in /usr/src/emacs/lisp/language/japan-util.el.gz
(defconst japanese-alpha-numeric-table
  '((?0 . ?0) (?1 . ?1) (?2 . ?2) (?3 . ?3) (?4 . ?4)
    (?5 . ?5) (?6 . ?6) (?7 . ?7) (?8 . ?8) (?9 . ?9)
    (?A . ?A) (?B . ?B) (?C . ?C) (?D . ?D) (?E . ?E)
    (?F . ?F) (?G . ?G) (?H . ?H) (?I . ?I) (?J . ?J)
    (?K . ?K) (?L . ?L) (?M . ?M) (?N . ?N) (?O . ?O)
    (?P . ?P) (?Q . ?Q) (?R . ?R) (?S . ?S) (?T . ?T)
    (?U . ?U) (?V . ?V) (?W . ?W) (?X . ?X) (?Y . ?Y) (?Z . ?Z)
    (?a . ?a) (?b . ?b) (?c . ?c) (?d . ?d) (?e . ?e)
    (?f . ?f) (?g . ?g) (?h . ?h) (?i . ?i) (?j . ?j)
    (?k . ?k) (?l . ?l) (?m . ?m) (?n . ?n) (?o . ?o)
    (?p . ?p) (?q . ?q) (?r . ?r) (?s . ?s) (?t . ?t)
    (?u . ?u) (?v . ?v) (?w . ?w) (?x . ?x) (?y . ?y) (?z . ?z))
  "Japanese JISX0208 alpha numeric character table.
Each element is of the form (ALPHANUMERIC . ASCII), where ALPHANUMERIC
belongs to `japanese-jisx0208', ASCII belongs to `ascii'.")