curses 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.devcontainer/Dockerfile +132 -0
- data/.devcontainer/devcontainer.json +58 -0
- data/.devcontainer/init-firewall.sh +139 -0
- data/.github/workflows/gh-pages.yml +4 -4
- data/.github/workflows/macos.yml +5 -2
- data/.github/workflows/push_gem.yml +7 -2
- data/.github/workflows/ubuntu.yml +5 -2
- data/.github/workflows/windows.yml +5 -2
- data/.gitmodules +3 -3
- data/README.md +2 -2
- data/curses.gemspec +1 -1
- data/ext/curses/extconf.rb +5 -2
- data/lib/curses.rb +1 -1
- data/vendor/PDCursesMod/.github/workflows/github_actions_build.yml +42 -0
- data/vendor/PDCursesMod/.gitignore +47 -0
- data/vendor/PDCursesMod/.travis.yml +308 -0
- data/vendor/PDCursesMod/CMakeLists.txt +77 -0
- data/vendor/PDCursesMod/README.md +60 -0
- data/vendor/PDCursesMod/appveyor.yml +300 -0
- data/vendor/PDCursesMod/cmake/README.md +71 -0
- data/vendor/PDCursesMod/cmake/build_dependencies.cmake +186 -0
- data/vendor/PDCursesMod/cmake/build_options.cmake +29 -0
- data/vendor/PDCursesMod/cmake/dll_version.cmake +24 -0
- data/vendor/PDCursesMod/cmake/gen_config_header.cmake +40 -0
- data/vendor/PDCursesMod/cmake/get_version.cmake +17 -0
- data/vendor/PDCursesMod/cmake/project_common.cmake +131 -0
- data/vendor/PDCursesMod/cmake/sdl2_ttf/CMakeLists.txt +95 -0
- data/vendor/PDCursesMod/cmake/version.in.cmake +61 -0
- data/vendor/PDCursesMod/cmake/watcom_open_dos16_toolchain.cmake +90 -0
- data/vendor/PDCursesMod/cmake/watcom_open_dos32_toolchain.cmake +89 -0
- data/vendor/PDCursesMod/cmake/watcom_open_os2v2_toolchain.cmake +88 -0
- data/vendor/PDCursesMod/cmake/watcom_open_win32_toolchain.cmake +12 -0
- data/vendor/PDCursesMod/common/acs_defs.h +288 -0
- data/vendor/PDCursesMod/common/approx.c +163 -0
- data/vendor/PDCursesMod/common/beep.c +70 -0
- data/vendor/PDCursesMod/common/blink.c +90 -0
- data/vendor/PDCursesMod/common/config_curses.c +134 -0
- data/vendor/PDCursesMod/common/dos_key.h +59 -0
- data/vendor/PDCursesMod/common/dosutil.c +136 -0
- data/vendor/PDCursesMod/common/font437.h +386 -0
- data/vendor/PDCursesMod/common/icon32.xpm +42 -0
- data/vendor/PDCursesMod/common/icon64.xpm +74 -0
- data/vendor/PDCursesMod/common/iconbmp.h +24 -0
- data/vendor/PDCursesMod/common/libobjs.mif +32 -0
- data/vendor/PDCursesMod/common/mouse.c +293 -0
- data/vendor/PDCursesMod/common/pdcclip.c +135 -0
- data/vendor/PDCursesMod/common/pdccolor.c +223 -0
- data/vendor/PDCursesMod/common/pdccolor.h +17 -0
- data/vendor/PDCursesMod/common/pdccolor.txt +81 -0
- data/vendor/PDCursesMod/common/pdcurses.rc +35 -0
- data/vendor/PDCursesMod/common/psf.c +250 -0
- data/vendor/PDCursesMod/common/psf.h +13 -0
- data/vendor/PDCursesMod/common/psf_wide.h +584 -0
- data/vendor/PDCursesMod/common/watcom.mif +224 -0
- data/vendor/PDCursesMod/common/winclip.c +151 -0
- data/vendor/PDCursesMod/common/xlates.h +142 -0
- data/vendor/PDCursesMod/curses.h +1972 -0
- data/vendor/PDCursesMod/curspriv.h +295 -0
- data/vendor/PDCursesMod/demos/UTF-8-demo.txt +225 -0
- data/vendor/PDCursesMod/demos/calendar.c +278 -0
- data/vendor/PDCursesMod/demos/curses.priv.h +37 -0
- data/vendor/PDCursesMod/demos/dates.txt +2576 -0
- data/vendor/PDCursesMod/demos/firework.c +149 -0
- data/vendor/PDCursesMod/demos/init_col.c +152 -0
- data/vendor/PDCursesMod/demos/mbrot.c +366 -0
- data/vendor/PDCursesMod/demos/nctests.mif +299 -0
- data/vendor/PDCursesMod/demos/ncurses_cfg.h +100 -0
- data/vendor/PDCursesMod/demos/newtest.c +608 -0
- data/vendor/PDCursesMod/demos/ozdemo.c +444 -0
- data/vendor/PDCursesMod/demos/picsview.c +516 -0
- data/vendor/PDCursesMod/demos/ptest.c +315 -0
- data/vendor/PDCursesMod/demos/rain.c +161 -0
- data/vendor/PDCursesMod/demos/snprintf.c +30 -0
- data/vendor/PDCursesMod/demos/speed.c +124 -0
- data/vendor/PDCursesMod/demos/test_pan.c +372 -0
- data/vendor/PDCursesMod/demos/testcurs.c +1978 -0
- data/vendor/PDCursesMod/demos/tui.c +816 -0
- data/vendor/PDCursesMod/demos/tui.h +65 -0
- data/vendor/PDCursesMod/demos/tuidemo.c +231 -0
- data/vendor/PDCursesMod/demos/version.c +66 -0
- data/vendor/PDCursesMod/demos/widetest.c +130 -0
- data/vendor/PDCursesMod/demos/worm.c +450 -0
- data/vendor/PDCursesMod/demos/xmas.c +955 -0
- data/vendor/PDCursesMod/docs/HISTORY.md +3850 -0
- data/vendor/PDCursesMod/docs/IMPLEMNT.md +321 -0
- data/vendor/PDCursesMod/docs/MANUAL.md +3304 -0
- data/vendor/PDCursesMod/docs/README.md +51 -0
- data/vendor/PDCursesMod/docs/USERS.md +451 -0
- data/vendor/PDCursesMod/docs/manext.awk +15 -0
- data/vendor/PDCursesMod/docs/mkman.sh +7 -0
- data/vendor/PDCursesMod/dos/CMakeLists.txt +54 -0
- data/vendor/PDCursesMod/dos/Makefile +85 -0
- data/vendor/PDCursesMod/dos/Makefile.bcc +81 -0
- data/vendor/PDCursesMod/dos/Makefile.dmc +315 -0
- data/vendor/PDCursesMod/dos/Makefile.wcc +44 -0
- data/vendor/PDCursesMod/dos/README.md +49 -0
- data/vendor/PDCursesMod/dos/pdcclip.c +1 -0
- data/vendor/PDCursesMod/dos/pdcdisp.c +164 -0
- data/vendor/PDCursesMod/dos/pdcdos.h +173 -0
- data/vendor/PDCursesMod/dos/pdcgetsc.c +81 -0
- data/vendor/PDCursesMod/dos/pdckbd.c +428 -0
- data/vendor/PDCursesMod/dos/pdcscrn.c +707 -0
- data/vendor/PDCursesMod/dos/pdcsetsc.c +120 -0
- data/vendor/PDCursesMod/dos/pdcutil.c +11 -0
- data/vendor/PDCursesMod/dosvga/CMakeLists.txt +54 -0
- data/vendor/PDCursesMod/dosvga/Makefile +109 -0
- data/vendor/PDCursesMod/dosvga/Makefile.bcc +82 -0
- data/vendor/PDCursesMod/dosvga/Makefile.dmc +318 -0
- data/vendor/PDCursesMod/dosvga/Makefile.wcc +40 -0
- data/vendor/PDCursesMod/dosvga/README.md +58 -0
- data/vendor/PDCursesMod/dosvga/cp437.h +184 -0
- data/vendor/PDCursesMod/dosvga/font.h +454 -0
- data/vendor/PDCursesMod/dosvga/hexize.c +45 -0
- data/vendor/PDCursesMod/dosvga/mk_font.c +35 -0
- data/vendor/PDCursesMod/dosvga/pdcclip.c +1 -0
- data/vendor/PDCursesMod/dosvga/pdcdisp.c +684 -0
- data/vendor/PDCursesMod/dosvga/pdcdos.h +201 -0
- data/vendor/PDCursesMod/dosvga/pdcgetsc.c +47 -0
- data/vendor/PDCursesMod/dosvga/pdckbd.c +484 -0
- data/vendor/PDCursesMod/dosvga/pdcscrn.c +1693 -0
- data/vendor/PDCursesMod/dosvga/pdcsetsc.c +79 -0
- data/vendor/PDCursesMod/dosvga/pdcutil.c +13 -0
- data/vendor/PDCursesMod/dosvga/pdcvesa.h +88 -0
- data/vendor/PDCursesMod/fb/Makefile +150 -0
- data/vendor/PDCursesMod/fb/README.md +52 -0
- data/vendor/PDCursesMod/fb/cursor.c +111 -0
- data/vendor/PDCursesMod/fb/drm.c +264 -0
- data/vendor/PDCursesMod/fb/pdcclip.c +1 -0
- data/vendor/PDCursesMod/fb/pdcdisp.c +521 -0
- data/vendor/PDCursesMod/fb/pdcfb.h +11 -0
- data/vendor/PDCursesMod/fb/pdcgetsc.c +1 -0
- data/vendor/PDCursesMod/fb/pdckbd.c +114 -0
- data/vendor/PDCursesMod/fb/pdcmouse.c +185 -0
- data/vendor/PDCursesMod/fb/pdcscrn.c +539 -0
- data/vendor/PDCursesMod/fb/pdcsetsc.c +3 -0
- data/vendor/PDCursesMod/fb/pdcutil.c +5 -0
- data/vendor/PDCursesMod/gl/CMakeLists.txt +66 -0
- data/vendor/PDCursesMod/gl/Makefile +188 -0
- data/vendor/PDCursesMod/gl/Makefile.vc +129 -0
- data/vendor/PDCursesMod/gl/README.md +134 -0
- data/vendor/PDCursesMod/gl/glfuncs.h +159 -0
- data/vendor/PDCursesMod/gl/pdcclip.c +93 -0
- data/vendor/PDCursesMod/gl/pdcdisp.c +867 -0
- data/vendor/PDCursesMod/gl/pdcgetsc.c +30 -0
- data/vendor/PDCursesMod/gl/pdcgl.h +51 -0
- data/vendor/PDCursesMod/gl/pdckbd.c +548 -0
- data/vendor/PDCursesMod/gl/pdcscrn.c +700 -0
- data/vendor/PDCursesMod/gl/pdcsetsc.c +99 -0
- data/vendor/PDCursesMod/gl/pdcutil.c +35 -0
- data/vendor/PDCursesMod/ncurses/CMakeLists.txt +76 -0
- data/vendor/PDCursesMod/ncurses/Makefile +38 -0
- data/vendor/PDCursesMod/os2/Makefile +150 -0
- data/vendor/PDCursesMod/os2/Makefile.bcc +85 -0
- data/vendor/PDCursesMod/os2/Makefile.wcc +26 -0
- data/vendor/PDCursesMod/os2/iccos2.lrf +49 -0
- data/vendor/PDCursesMod/os2/iccos2.mak +260 -0
- data/vendor/PDCursesMod/os2/pdcclip.c +172 -0
- data/vendor/PDCursesMod/os2/pdcdisp.c +130 -0
- data/vendor/PDCursesMod/os2/pdcgetsc.c +52 -0
- data/vendor/PDCursesMod/os2/pdckbd.c +435 -0
- data/vendor/PDCursesMod/os2/pdcos2.h +21 -0
- data/vendor/PDCursesMod/os2/pdcscrn.c +231 -0
- data/vendor/PDCursesMod/os2/pdcsetsc.c +110 -0
- data/vendor/PDCursesMod/os2/pdcutil.c +51 -0
- data/vendor/PDCursesMod/os2gui/.gitignore +1 -0
- data/vendor/PDCursesMod/os2gui/CMakeLists.txt +30 -0
- data/vendor/PDCursesMod/os2gui/Makefile +139 -0
- data/vendor/PDCursesMod/os2gui/Makefile.wcc +32 -0
- data/vendor/PDCursesMod/os2gui/README.md +69 -0
- data/vendor/PDCursesMod/os2gui/pdcclip.c +165 -0
- data/vendor/PDCursesMod/os2gui/pdcdisp.c +2021 -0
- data/vendor/PDCursesMod/os2gui/pdcgetsc.c +26 -0
- data/vendor/PDCursesMod/os2gui/pdckbd.c +79 -0
- data/vendor/PDCursesMod/os2gui/pdcscrn.c +2433 -0
- data/vendor/PDCursesMod/os2gui/pdcsetsc.c +115 -0
- data/vendor/PDCursesMod/os2gui/pdcutil.c +42 -0
- data/vendor/PDCursesMod/os2gui/pdcwin.h +106 -0
- data/vendor/PDCursesMod/os2gui/table.py +112 -0
- data/vendor/PDCursesMod/os2gui/unitable.h +3933 -0
- data/vendor/PDCursesMod/panel.h +41 -0
- data/vendor/PDCursesMod/pdcurses/addch.c +838 -0
- data/vendor/PDCursesMod/pdcurses/addchstr.c +232 -0
- data/vendor/PDCursesMod/pdcurses/addstr.c +245 -0
- data/vendor/PDCursesMod/pdcurses/attr.c +430 -0
- data/vendor/PDCursesMod/pdcurses/beep.c +78 -0
- data/vendor/PDCursesMod/pdcurses/bkgd.c +233 -0
- data/vendor/PDCursesMod/pdcurses/border.c +413 -0
- data/vendor/PDCursesMod/pdcurses/clear.c +161 -0
- data/vendor/PDCursesMod/pdcurses/color.c +761 -0
- data/vendor/PDCursesMod/pdcurses/debug.c +157 -0
- data/vendor/PDCursesMod/pdcurses/delch.c +96 -0
- data/vendor/PDCursesMod/pdcurses/deleteln.c +149 -0
- data/vendor/PDCursesMod/pdcurses/getch.c +871 -0
- data/vendor/PDCursesMod/pdcurses/getstr.c +487 -0
- data/vendor/PDCursesMod/pdcurses/getyx.c +152 -0
- data/vendor/PDCursesMod/pdcurses/inch.c +133 -0
- data/vendor/PDCursesMod/pdcurses/inchstr.c +217 -0
- data/vendor/PDCursesMod/pdcurses/initscr.c +524 -0
- data/vendor/PDCursesMod/pdcurses/inopts.c +490 -0
- data/vendor/PDCursesMod/pdcurses/insch.c +273 -0
- data/vendor/PDCursesMod/pdcurses/insstr.c +268 -0
- data/vendor/PDCursesMod/pdcurses/instr.c +253 -0
- data/vendor/PDCursesMod/pdcurses/kernel.c +338 -0
- data/vendor/PDCursesMod/pdcurses/keyname.c +149 -0
- data/vendor/PDCursesMod/pdcurses/mouse.c +469 -0
- data/vendor/PDCursesMod/pdcurses/move.c +84 -0
- data/vendor/PDCursesMod/pdcurses/outopts.c +283 -0
- data/vendor/PDCursesMod/pdcurses/overlay.c +204 -0
- data/vendor/PDCursesMod/pdcurses/pad.c +303 -0
- data/vendor/PDCursesMod/pdcurses/pairs.txt +94 -0
- data/vendor/PDCursesMod/pdcurses/panel.c +551 -0
- data/vendor/PDCursesMod/pdcurses/printw.c +180 -0
- data/vendor/PDCursesMod/pdcurses/refresh.c +372 -0
- data/vendor/PDCursesMod/pdcurses/scanw.c +582 -0
- data/vendor/PDCursesMod/pdcurses/scr_dump.c +311 -0
- data/vendor/PDCursesMod/pdcurses/scroll.c +115 -0
- data/vendor/PDCursesMod/pdcurses/slk.c +660 -0
- data/vendor/PDCursesMod/pdcurses/termattr.c +177 -0
- data/vendor/PDCursesMod/pdcurses/terminfo.c +243 -0
- data/vendor/PDCursesMod/pdcurses/touch.c +255 -0
- data/vendor/PDCursesMod/pdcurses/util.c +502 -0
- data/vendor/PDCursesMod/pdcurses/window.c +708 -0
- data/vendor/PDCursesMod/plan9/README.md +57 -0
- data/vendor/PDCursesMod/plan9/header.patch +11 -0
- data/vendor/PDCursesMod/plan9/mkfile +103 -0
- data/vendor/PDCursesMod/plan9/mkfile_demo +42 -0
- data/vendor/PDCursesMod/plan9/pdcclip.c +1 -0
- data/vendor/PDCursesMod/plan9/pdcdisp.c +62 -0
- data/vendor/PDCursesMod/plan9/pdcgetsc.c +28 -0
- data/vendor/PDCursesMod/plan9/pdckbd.c +53 -0
- data/vendor/PDCursesMod/plan9/pdcplan9.h +10 -0
- data/vendor/PDCursesMod/plan9/pdcscrn.c +103 -0
- data/vendor/PDCursesMod/plan9/pdcsetsc.c +51 -0
- data/vendor/PDCursesMod/plan9/pdcutil.c +370 -0
- data/vendor/PDCursesMod/psffonts/10x20.psf +0 -0
- data/vendor/PDCursesMod/psffonts/18x18.psf +0 -0
- data/vendor/PDCursesMod/psffonts/4x6.psf +0 -0
- data/vendor/PDCursesMod/psffonts/6x12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/8x13.psf +0 -0
- data/vendor/PDCursesMod/psffonts/9x15.psf +0 -0
- data/vendor/PDCursesMod/psffonts/9x18.psf +0 -0
- data/vendor/PDCursesMod/psffonts/README +38 -0
- data/vendor/PDCursesMod/psffonts/README.md +14 -0
- data/vendor/PDCursesMod/psffonts/bmp2psf2.c +130 -0
- data/vendor/PDCursesMod/psffonts/cour11x17.psf +0 -0
- data/vendor/PDCursesMod/psffonts/cour20x29.psf +0 -0
- data/vendor/PDCursesMod/psffonts/default.psf +0 -0
- data/vendor/PDCursesMod/psffonts/dosemu.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/2_hebrew-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/README +285 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/antique-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apls-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabdrft-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabkufi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabnaf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arbnaskh-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/armenian-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/armenian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/armenian-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/art-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/ascii-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/backward-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bdeclo-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexall-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexbox-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexhi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexlo-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bigserif-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bigserif-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bigsf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/binaryed-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/blcksnsf-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/block-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bold-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/boxround-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/boxround-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/broadway-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bthin-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bway2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cafe-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cafe-12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cntdown-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cntdown-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/computer-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/copyleft.txt +209 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/courier-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437alt-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437bgr-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp862-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp862-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp862-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp864-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp864-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp864-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp866-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp866-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp866-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp880-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp880-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp880-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp881-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp881-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp881-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp882-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp882-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp882-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp883-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp883-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp883-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp884-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp884-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp884-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp885-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp885-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp885-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyril2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyril_b-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrillic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/decorate-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/draw-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/drawhi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/europe-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-09.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-11.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-13.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/farsi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/finnish-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/fontorig.txt +308 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/fractur-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/future-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/gaelic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/gaelic1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/georgian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-06.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-07.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hack4th-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/handugly-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/handwrit-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/handwrit-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-7bit-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-big-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-bold-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-ktab-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-med-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-snsf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebboldk-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebclrgf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebktav1-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebktav2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heblarge-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heblarge-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebrew-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebugly-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebyogi-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercital-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercules-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercules-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercules-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/history.txt +45 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hollow-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hrkgreek-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hylas-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/icons-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/inverted-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso3-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso4-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/italics-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/kana-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/kana-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_large-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_misc-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_ocr-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_ocr-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbarabic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbitalic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbitalic-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbscript-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lcd-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/mac-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/macntosh-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/macntosh-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/madrid-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/medieval-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/modern-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/norway-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/norway2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/old-engl-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/old-engl-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/oldeng-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/oldeng-f-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pc_6-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pc_7-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/persian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/persian-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/police-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/polish-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/polish1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pp_roman-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pp_sser-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readabl7-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readabl8-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readable-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readable-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/reverse-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/rimrock-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/rmrkbold-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/rom8pix-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/roman-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/roman-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/runic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/sanserif-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/sanserif-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/script-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/scrwl----16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/scrwl~~~-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/security-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/side-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/slant-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/smalcaps-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/smcapnum-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/spranto-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/spranto1-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/spranto2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/square-12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/standard-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/standard-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/stretch-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/subsup-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/super-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swiss-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swiss-av-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swissav2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swissbox-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swissbx2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/tex-math-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/tex-math-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thai-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thinasci-07.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thincaps-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thindemo-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thinscrp-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/turkish-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/urdu-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/voynich-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/wiggly-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/yugosla-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/lc12x20.psf +0 -0
- data/vendor/PDCursesMod/psffonts/makefile +2 -0
- data/vendor/PDCursesMod/psffonts/mappings/8859-3.TXT +285 -0
- data/vendor/PDCursesMod/psffonts/mappings/APL-ISO-IR-68.TXT +273 -0
- data/vendor/PDCursesMod/psffonts/mappings/ATARIST.TXT +320 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1006.TXT +302 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1250.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1251.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1252.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1253.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1254.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1255.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1256.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1257.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1258.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP424.TXT +304 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP437.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP737.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP775.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP850.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP851.TXT +276 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP852.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP855.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP856.TXT +303 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP857.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP860.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP861.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP862.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP863.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP864.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP865.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP866.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP869.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP874.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP932.TXT +7998 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP936.TXT +22065 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP949.TXT +17322 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP950.TXT +13777 -0
- data/vendor/PDCursesMod/psffonts/mappings/IBMGRAPH.TXT +99 -0
- data/vendor/PDCursesMod/psffonts/mappings/KOI8-R.TXT +294 -0
- data/vendor/PDCursesMod/psffonts/mappings/KOI8-U.TXT +301 -0
- data/vendor/PDCursesMod/psffonts/mappings/KPS9566.TXT +17166 -0
- data/vendor/PDCursesMod/psffonts/mappings/KZ1048.TXT +294 -0
- data/vendor/PDCursesMod/psffonts/mappings/ReadMe.txt +20 -0
- data/vendor/PDCursesMod/psffonts/mappings/SGML.TXT +1041 -0
- data/vendor/PDCursesMod/psffonts/medieval2.psf +0 -0
- data/vendor/PDCursesMod/psffonts/vga11x19.psf +0 -0
- data/vendor/PDCursesMod/sdl1/Makefile +140 -0
- data/vendor/PDCursesMod/sdl1/README.md +200 -0
- data/vendor/PDCursesMod/sdl1/pdcclip.c +1 -0
- data/vendor/PDCursesMod/sdl1/pdcdisp.c +462 -0
- data/vendor/PDCursesMod/sdl1/pdcgetsc.c +30 -0
- data/vendor/PDCursesMod/sdl1/pdckbd.c +417 -0
- data/vendor/PDCursesMod/sdl1/pdcscrn.c +396 -0
- data/vendor/PDCursesMod/sdl1/pdcsdl.h +34 -0
- data/vendor/PDCursesMod/sdl1/pdcsetsc.c +99 -0
- data/vendor/PDCursesMod/sdl1/pdcutil.c +34 -0
- data/vendor/PDCursesMod/sdl1/sdltest.c +79 -0
- data/vendor/PDCursesMod/sdl2/CMakeLists.txt +76 -0
- data/vendor/PDCursesMod/sdl2/Makefile +207 -0
- data/vendor/PDCursesMod/sdl2/Makefile.vc +132 -0
- data/vendor/PDCursesMod/sdl2/README.md +215 -0
- data/vendor/PDCursesMod/sdl2/pdcclip.c +93 -0
- data/vendor/PDCursesMod/sdl2/pdcdisp.c +536 -0
- data/vendor/PDCursesMod/sdl2/pdcgetsc.c +30 -0
- data/vendor/PDCursesMod/sdl2/pdckbd.c +540 -0
- data/vendor/PDCursesMod/sdl2/pdcscrn.c +529 -0
- data/vendor/PDCursesMod/sdl2/pdcsdl.h +46 -0
- data/vendor/PDCursesMod/sdl2/pdcsetsc.c +99 -0
- data/vendor/PDCursesMod/sdl2/pdcutil.c +35 -0
- data/vendor/PDCursesMod/sdl2/sdltest.c +91 -0
- data/vendor/PDCursesMod/sdl2/versions.mif +2 -0
- data/vendor/PDCursesMod/term.h +48 -0
- data/vendor/PDCursesMod/tests/README.md +16 -0
- data/vendor/PDCursesMod/tests/brk_test.c +42 -0
- data/vendor/PDCursesMod/tests/del_test.c +95 -0
- data/vendor/PDCursesMod/tests/focus.c +53 -0
- data/vendor/PDCursesMod/tests/ins_del.c +108 -0
- data/vendor/PDCursesMod/tests/keytest.c +87 -0
- data/vendor/PDCursesMod/tests/naptest.c +43 -0
- data/vendor/PDCursesMod/tests/opaque.c +42 -0
- data/vendor/PDCursesMod/tests/restart.c +60 -0
- data/vendor/PDCursesMod/tests/ripoff.c +141 -0
- data/vendor/PDCursesMod/tests/show_col.c +55 -0
- data/vendor/PDCursesMod/tests/show_uni.c +163 -0
- data/vendor/PDCursesMod/tests/vt0.c +472 -0
- data/vendor/PDCursesMod/vt/CMakeLists.txt +35 -0
- data/vendor/PDCursesMod/vt/Makefile +204 -0
- data/vendor/PDCursesMod/vt/Makefile.bcc +101 -0
- data/vendor/PDCursesMod/vt/Makefile.dmc +313 -0
- data/vendor/PDCursesMod/vt/Makefile.vc +145 -0
- data/vendor/PDCursesMod/vt/Makefile.wcc +48 -0
- data/vendor/PDCursesMod/vt/README.md +82 -0
- data/vendor/PDCursesMod/vt/pdcclip.c +8 -0
- data/vendor/PDCursesMod/vt/pdcdisp.c +424 -0
- data/vendor/PDCursesMod/vt/pdckbd.c +603 -0
- data/vendor/PDCursesMod/vt/pdcscrn.c +492 -0
- data/vendor/PDCursesMod/vt/pdcsetsc.c +158 -0
- data/vendor/PDCursesMod/vt/pdcutil.c +85 -0
- data/vendor/PDCursesMod/vt/pdcvt.h +25 -0
- data/vendor/PDCursesMod/wincon/CMakeLists.txt +29 -0
- data/vendor/PDCursesMod/wincon/Makefile +190 -0
- data/vendor/PDCursesMod/wincon/Makefile.bcc +87 -0
- data/vendor/PDCursesMod/wincon/Makefile.dmc +275 -0
- data/vendor/PDCursesMod/wincon/Makefile.vc +132 -0
- data/vendor/PDCursesMod/wincon/Makefile.wcc +33 -0
- data/vendor/PDCursesMod/wincon/README.md +76 -0
- data/vendor/PDCursesMod/wincon/pdcclip.c +6 -0
- data/vendor/PDCursesMod/wincon/pdcdisp.c +408 -0
- data/vendor/PDCursesMod/wincon/pdcgetsc.c +42 -0
- data/vendor/PDCursesMod/wincon/pdckbd.c +778 -0
- data/vendor/PDCursesMod/wincon/pdcscrn.c +733 -0
- data/vendor/PDCursesMod/wincon/pdcsetsc.c +130 -0
- data/vendor/PDCursesMod/wincon/pdcutil.c +38 -0
- data/vendor/PDCursesMod/wincon/pdcwin.h +35 -0
- data/vendor/PDCursesMod/wingui/CMakeLists.txt +30 -0
- data/vendor/PDCursesMod/wingui/Makefile +186 -0
- data/vendor/PDCursesMod/wingui/Makefile.bcc +80 -0
- data/vendor/PDCursesMod/wingui/Makefile.dmc +314 -0
- data/vendor/PDCursesMod/wingui/Makefile.vc +144 -0
- data/vendor/PDCursesMod/wingui/Makefile.wcc +32 -0
- data/vendor/PDCursesMod/wingui/README.md +92 -0
- data/vendor/PDCursesMod/wingui/pdcclip.c +6 -0
- data/vendor/PDCursesMod/wingui/pdcdisp.c +576 -0
- data/vendor/PDCursesMod/wingui/pdckbd.c +89 -0
- data/vendor/PDCursesMod/wingui/pdcscrn.c +2235 -0
- data/vendor/PDCursesMod/wingui/pdcsetsc.c +124 -0
- data/vendor/PDCursesMod/wingui/pdcutil.c +44 -0
- data/vendor/PDCursesMod/wingui/pdcwin.h +85 -0
- data/vendor/PDCursesMod/x11/Makefile.in +1047 -0
- data/vendor/PDCursesMod/x11/README.md +227 -0
- data/vendor/PDCursesMod/x11/aclocal.m4 +553 -0
- data/vendor/PDCursesMod/x11/config.guess +1774 -0
- data/vendor/PDCursesMod/x11/config.h.in +37 -0
- data/vendor/PDCursesMod/x11/config.sub +1907 -0
- data/vendor/PDCursesMod/x11/configure +5944 -0
- data/vendor/PDCursesMod/x11/configure.ac +175 -0
- data/vendor/PDCursesMod/x11/pdcclip.c +254 -0
- data/vendor/PDCursesMod/x11/pdcdisp.c +418 -0
- data/vendor/PDCursesMod/x11/pdcgetsc.c +28 -0
- data/vendor/PDCursesMod/x11/pdckbd.c +743 -0
- data/vendor/PDCursesMod/x11/pdcscrn.c +848 -0
- data/vendor/PDCursesMod/x11/pdcsetsc.c +108 -0
- data/vendor/PDCursesMod/x11/pdcutil.c +41 -0
- data/vendor/PDCursesMod/x11/pdcx11.h +82 -0
- data/vendor/PDCursesMod/x11/sb.c +331 -0
- data/vendor/PDCursesMod/x11/scrlbox.c +348 -0
- data/vendor/PDCursesMod/x11/scrlbox.h +47 -0
- data/vendor/PDCursesMod/x11/xcurses-config.in +81 -0
- data/vendor/PDCursesMod/x11new/Makefile +151 -0
- data/vendor/PDCursesMod/x11new/README.md +63 -0
- data/vendor/PDCursesMod/x11new/pdcclip.c +221 -0
- data/vendor/PDCursesMod/x11new/pdcdisp.c +195 -0
- data/vendor/PDCursesMod/x11new/pdcgetsc.c +27 -0
- data/vendor/PDCursesMod/x11new/pdckbd.c +722 -0
- data/vendor/PDCursesMod/x11new/pdcscrn.c +277 -0
- data/vendor/PDCursesMod/x11new/pdcsetsc.c +90 -0
- data/vendor/PDCursesMod/x11new/pdcutil.c +38 -0
- data/vendor/PDCursesMod/x11new/pdcx11.h +16 -0
- metadata +692 -246
- data/vendor/PDCurses/.gitignore +0 -47
- data/vendor/PDCurses/.travis.yml +0 -49
- data/vendor/PDCurses/CMakeLists.txt +0 -68
- data/vendor/PDCurses/HISTORY.md +0 -2036
- data/vendor/PDCurses/IMPLEMNT.md +0 -327
- data/vendor/PDCurses/Makefile +0 -27
- data/vendor/PDCurses/README.md +0 -77
- data/vendor/PDCurses/acs_defs.h +0 -265
- data/vendor/PDCurses/appveyor.yml +0 -218
- data/vendor/PDCurses/cmake/README.md +0 -71
- data/vendor/PDCurses/cmake/build_dependencies.cmake +0 -178
- data/vendor/PDCurses/cmake/build_options.cmake +0 -25
- data/vendor/PDCurses/cmake/dll_version.cmake +0 -26
- data/vendor/PDCurses/cmake/gen_config_header.cmake +0 -43
- data/vendor/PDCurses/cmake/get_version.cmake +0 -17
- data/vendor/PDCurses/cmake/project_common.cmake +0 -121
- data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +0 -83
- data/vendor/PDCurses/cmake/version.in.cmake +0 -73
- data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +0 -96
- data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +0 -106
- data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +0 -105
- data/vendor/PDCurses/curses.h +0 -1846
- data/vendor/PDCurses/curspriv.h +0 -134
- data/vendor/PDCurses/demos/firework.c +0 -144
- data/vendor/PDCurses/demos/newtest.c +0 -581
- data/vendor/PDCurses/demos/ozdemo.c +0 -447
- data/vendor/PDCurses/demos/ptest.c +0 -283
- data/vendor/PDCurses/demos/rain.c +0 -157
- data/vendor/PDCurses/demos/testcurs.c +0 -1607
- data/vendor/PDCurses/demos/tui.c +0 -1048
- data/vendor/PDCurses/demos/tui.h +0 -65
- data/vendor/PDCurses/demos/tuidemo.c +0 -233
- data/vendor/PDCurses/demos/version.c +0 -61
- data/vendor/PDCurses/demos/worm.c +0 -432
- data/vendor/PDCurses/demos/xmas.c +0 -955
- data/vendor/PDCurses/dos/CMakeLists.txt +0 -47
- data/vendor/PDCurses/dos/Makefile +0 -105
- data/vendor/PDCurses/dos/Makefile.bcc +0 -83
- data/vendor/PDCurses/dos/Makefile.dmc +0 -257
- data/vendor/PDCurses/dos/Makefile.msc +0 -113
- data/vendor/PDCurses/dos/Makefile.wcc +0 -107
- data/vendor/PDCurses/dos/README.md +0 -51
- data/vendor/PDCurses/dos/bccdos.lrf +0 -9
- data/vendor/PDCurses/dos/mscdos.lrf +0 -50
- data/vendor/PDCurses/dos/pdcclip.c +0 -132
- data/vendor/PDCurses/dos/pdcdisp.c +0 -135
- data/vendor/PDCurses/dos/pdcdos.h +0 -194
- data/vendor/PDCurses/dos/pdcgetsc.c +0 -98
- data/vendor/PDCurses/dos/pdckbd.c +0 -513
- data/vendor/PDCurses/dos/pdcscrn.c +0 -785
- data/vendor/PDCurses/dos/pdcsetsc.c +0 -101
- data/vendor/PDCurses/dos/pdcutil.c +0 -212
- data/vendor/PDCurses/libobjs.mif +0 -26
- data/vendor/PDCurses/makedist.mif +0 -20
- data/vendor/PDCurses/man/Makefile +0 -37
- data/vendor/PDCurses/man/README.md +0 -21
- data/vendor/PDCurses/man/intro.md +0 -361
- data/vendor/PDCurses/man/manext.c +0 -119
- data/vendor/PDCurses/man/sdl.md +0 -152
- data/vendor/PDCurses/man/sdl2.md +0 -58
- data/vendor/PDCurses/man/x11.md +0 -407
- data/vendor/PDCurses/ncurses/CMakeLists.txt +0 -66
- data/vendor/PDCurses/ncurses/makefile +0 -29
- data/vendor/PDCurses/os2/Makefile +0 -132
- data/vendor/PDCurses/os2/Makefile.bcc +0 -90
- data/vendor/PDCurses/os2/Makefile.wcc +0 -43
- data/vendor/PDCurses/os2/iccos2.lrf +0 -50
- data/vendor/PDCurses/os2/iccos2.mak +0 -256
- data/vendor/PDCurses/os2/pdcclip.c +0 -188
- data/vendor/PDCurses/os2/pdcdisp.c +0 -93
- data/vendor/PDCurses/os2/pdcgetsc.c +0 -89
- data/vendor/PDCurses/os2/pdckbd.c +0 -521
- data/vendor/PDCurses/os2/pdcos2.h +0 -55
- data/vendor/PDCurses/os2/pdcscrn.c +0 -449
- data/vendor/PDCurses/os2/pdcsetsc.c +0 -112
- data/vendor/PDCurses/os2/pdcutil.c +0 -52
- data/vendor/PDCurses/panel.h +0 -56
- data/vendor/PDCurses/pdcurses/addch.c +0 -693
- data/vendor/PDCurses/pdcurses/addchstr.c +0 -245
- data/vendor/PDCurses/pdcurses/addstr.c +0 -240
- data/vendor/PDCurses/pdcurses/attr.c +0 -359
- data/vendor/PDCurses/pdcurses/beep.c +0 -68
- data/vendor/PDCurses/pdcurses/bkgd.c +0 -223
- data/vendor/PDCurses/pdcurses/border.c +0 -411
- data/vendor/PDCurses/pdcurses/clear.c +0 -159
- data/vendor/PDCurses/pdcurses/color.c +0 -298
- data/vendor/PDCurses/pdcurses/debug.c +0 -109
- data/vendor/PDCurses/pdcurses/delch.c +0 -96
- data/vendor/PDCurses/pdcurses/deleteln.c +0 -211
- data/vendor/PDCurses/pdcurses/deprec.c +0 -27
- data/vendor/PDCurses/pdcurses/getch.c +0 -417
- data/vendor/PDCurses/pdcurses/getstr.c +0 -474
- data/vendor/PDCurses/pdcurses/getyx.c +0 -139
- data/vendor/PDCurses/pdcurses/inch.c +0 -127
- data/vendor/PDCurses/pdcurses/inchstr.c +0 -214
- data/vendor/PDCurses/pdcurses/initscr.c +0 -367
- data/vendor/PDCurses/pdcurses/inopts.c +0 -324
- data/vendor/PDCurses/pdcurses/insch.c +0 -271
- data/vendor/PDCurses/pdcurses/insstr.c +0 -264
- data/vendor/PDCurses/pdcurses/instr.c +0 -246
- data/vendor/PDCurses/pdcurses/kernel.c +0 -259
- data/vendor/PDCurses/pdcurses/keyname.c +0 -157
- data/vendor/PDCurses/pdcurses/mouse.c +0 -438
- data/vendor/PDCurses/pdcurses/move.c +0 -57
- data/vendor/PDCurses/pdcurses/outopts.c +0 -159
- data/vendor/PDCurses/pdcurses/overlay.c +0 -214
- data/vendor/PDCurses/pdcurses/pad.c +0 -260
- data/vendor/PDCurses/pdcurses/panel.c +0 -633
- data/vendor/PDCurses/pdcurses/printw.c +0 -126
- data/vendor/PDCurses/pdcurses/refresh.c +0 -279
- data/vendor/PDCurses/pdcurses/scanw.c +0 -578
- data/vendor/PDCurses/pdcurses/scr_dump.c +0 -213
- data/vendor/PDCurses/pdcurses/scroll.c +0 -101
- data/vendor/PDCurses/pdcurses/slk.c +0 -591
- data/vendor/PDCurses/pdcurses/termattr.c +0 -182
- data/vendor/PDCurses/pdcurses/terminfo.c +0 -217
- data/vendor/PDCurses/pdcurses/touch.c +0 -163
- data/vendor/PDCurses/pdcurses/util.c +0 -312
- data/vendor/PDCurses/pdcurses/window.c +0 -569
- data/vendor/PDCurses/sdl1/Makefile +0 -129
- data/vendor/PDCurses/sdl1/Makefile.mng +0 -110
- data/vendor/PDCurses/sdl1/README.md +0 -31
- data/vendor/PDCurses/sdl1/deffont.h +0 -385
- data/vendor/PDCurses/sdl1/deficon.h +0 -23
- data/vendor/PDCurses/sdl1/pdcclip.c +0 -131
- data/vendor/PDCurses/sdl1/pdcdisp.c +0 -373
- data/vendor/PDCurses/sdl1/pdcgetsc.c +0 -30
- data/vendor/PDCurses/sdl1/pdckbd.c +0 -405
- data/vendor/PDCurses/sdl1/pdcscrn.c +0 -414
- data/vendor/PDCurses/sdl1/pdcsdl.h +0 -31
- data/vendor/PDCurses/sdl1/pdcsetsc.c +0 -64
- data/vendor/PDCurses/sdl1/pdcutil.c +0 -40
- data/vendor/PDCurses/sdl1/sdltest.c +0 -79
- data/vendor/PDCurses/sdl2/CMakeLists.txt +0 -76
- data/vendor/PDCurses/sdl2/Makefile +0 -135
- data/vendor/PDCurses/sdl2/Makefile.vc +0 -164
- data/vendor/PDCurses/sdl2/README.md +0 -34
- data/vendor/PDCurses/sdl2/deffont.h +0 -385
- data/vendor/PDCurses/sdl2/deficon.h +0 -23
- data/vendor/PDCurses/sdl2/pdcclip.c +0 -93
- data/vendor/PDCurses/sdl2/pdcdisp.c +0 -534
- data/vendor/PDCurses/sdl2/pdcgetsc.c +0 -30
- data/vendor/PDCurses/sdl2/pdckbd.c +0 -480
- data/vendor/PDCurses/sdl2/pdcscrn.c +0 -443
- data/vendor/PDCurses/sdl2/pdcsdl.h +0 -33
- data/vendor/PDCurses/sdl2/pdcsetsc.c +0 -67
- data/vendor/PDCurses/sdl2/pdcutil.c +0 -39
- data/vendor/PDCurses/sdl2/sdltest.c +0 -81
- data/vendor/PDCurses/term.h +0 -48
- data/vendor/PDCurses/version.mif +0 -7
- data/vendor/PDCurses/vt/CMakeLists.txt +0 -28
- data/vendor/PDCurses/vt/Makefile +0 -135
- data/vendor/PDCurses/vt/Makefile.bcc +0 -111
- data/vendor/PDCurses/vt/Makefile.dmc +0 -258
- data/vendor/PDCurses/vt/Makefile.vc +0 -144
- data/vendor/PDCurses/vt/Makefile.wcc +0 -107
- data/vendor/PDCurses/vt/README.md +0 -64
- data/vendor/PDCurses/vt/pdcclip.c +0 -20
- data/vendor/PDCurses/vt/pdcdisp.c +0 -284
- data/vendor/PDCurses/vt/pdckbd.c +0 -394
- data/vendor/PDCurses/vt/pdcscrn.c +0 -434
- data/vendor/PDCurses/vt/pdcsetsc.c +0 -45
- data/vendor/PDCurses/vt/pdcutil.c +0 -43
- data/vendor/PDCurses/vt/pdcvt.h +0 -16
- data/vendor/PDCurses/watcom.mif +0 -68
- data/vendor/PDCurses/wincon/CMakeLists.txt +0 -27
- data/vendor/PDCurses/wincon/Makefile.bcc +0 -88
- data/vendor/PDCurses/wincon/Makefile.dmc +0 -256
- data/vendor/PDCurses/wincon/Makefile.lcc +0 -273
- data/vendor/PDCurses/wincon/Makefile.mng +0 -176
- data/vendor/PDCurses/wincon/Makefile.vc +0 -144
- data/vendor/PDCurses/wincon/Makefile.wcc +0 -51
- data/vendor/PDCurses/wincon/README.md +0 -85
- data/vendor/PDCurses/wincon/pdcclip.c +0 -174
- data/vendor/PDCurses/wincon/pdcdisp.c +0 -143
- data/vendor/PDCurses/wincon/pdcgetsc.c +0 -55
- data/vendor/PDCurses/wincon/pdckbd.c +0 -786
- data/vendor/PDCurses/wincon/pdcscrn.c +0 -717
- data/vendor/PDCurses/wincon/pdcsetsc.c +0 -91
- data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
- data/vendor/PDCurses/wincon/pdcurses.rc +0 -28
- data/vendor/PDCurses/wincon/pdcutil.c +0 -41
- data/vendor/PDCurses/wincon/pdcwin.h +0 -31
- data/vendor/PDCurses/wingui/CMakeLists.txt +0 -27
- data/vendor/PDCurses/wingui/Makefile.bcc +0 -85
- data/vendor/PDCurses/wingui/Makefile.dmc +0 -259
- data/vendor/PDCurses/wingui/Makefile.lcc +0 -273
- data/vendor/PDCurses/wingui/Makefile.mng +0 -171
- data/vendor/PDCurses/wingui/Makefile.vc +0 -144
- data/vendor/PDCurses/wingui/Makefile.wcc +0 -51
- data/vendor/PDCurses/wingui/README.md +0 -93
- data/vendor/PDCurses/wingui/pdcclip.c +0 -174
- data/vendor/PDCurses/wingui/pdcdisp.c +0 -718
- data/vendor/PDCurses/wingui/pdckbd.c +0 -143
- data/vendor/PDCurses/wingui/pdcscrn.c +0 -2797
- data/vendor/PDCurses/wingui/pdcsetsc.c +0 -89
- data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
- data/vendor/PDCurses/wingui/pdcurses.rc +0 -28
- data/vendor/PDCurses/wingui/pdcutil.c +0 -61
- data/vendor/PDCurses/wingui/pdcwin.h +0 -122
- data/vendor/PDCurses/x11/Makefile.in +0 -754
- data/vendor/PDCurses/x11/PDCurses.spec +0 -82
- data/vendor/PDCurses/x11/README.md +0 -62
- data/vendor/PDCurses/x11/ScrollBox.c +0 -319
- data/vendor/PDCurses/x11/ScrollBox.h +0 -51
- data/vendor/PDCurses/x11/ScrollBoxP.h +0 -70
- data/vendor/PDCurses/x11/aclocal.m4 +0 -994
- data/vendor/PDCurses/x11/big_icon.xbm +0 -46
- data/vendor/PDCurses/x11/compose.h +0 -201
- data/vendor/PDCurses/x11/config.guess +0 -1500
- data/vendor/PDCurses/x11/config.h.in +0 -100
- data/vendor/PDCurses/x11/config.sub +0 -1616
- data/vendor/PDCurses/x11/configure +0 -6700
- data/vendor/PDCurses/x11/configure.ac +0 -295
- data/vendor/PDCurses/x11/debian/changelog +0 -6
- data/vendor/PDCurses/x11/debian/compat +0 -1
- data/vendor/PDCurses/x11/debian/control +0 -11
- data/vendor/PDCurses/x11/debian/copyright +0 -27
- data/vendor/PDCurses/x11/debian/rules +0 -98
- data/vendor/PDCurses/x11/little_icon.xbm +0 -14
- data/vendor/PDCurses/x11/ncurses_cfg.h +0 -45
- data/vendor/PDCurses/x11/pdcclip.c +0 -173
- data/vendor/PDCurses/x11/pdcdisp.c +0 -85
- data/vendor/PDCurses/x11/pdcgetsc.c +0 -28
- data/vendor/PDCurses/x11/pdckbd.c +0 -104
- data/vendor/PDCurses/x11/pdcscrn.c +0 -258
- data/vendor/PDCurses/x11/pdcsetsc.c +0 -95
- data/vendor/PDCurses/x11/pdcutil.c +0 -52
- data/vendor/PDCurses/x11/pdcx11.c +0 -316
- data/vendor/PDCurses/x11/pdcx11.h +0 -191
- data/vendor/PDCurses/x11/sb.c +0 -155
- data/vendor/PDCurses/x11/x11.c +0 -3686
- data/vendor/PDCurses/x11/xcurses-config.in +0 -81
- /data/vendor/{PDCurses → PDCursesMod}/cmake/make_uninstall.cmake +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/cmake/resource.in.cmake +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/cmake/target_arch.cmake +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/demos/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/ncurses/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/os2/CMakeLists.txt +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/os2/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/pdcurses/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/vt/pdcgetsc.c +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/wingui/pdcgetsc.c +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/x11/install-sh +0 -0
|
@@ -0,0 +1,1041 @@
|
|
|
1
|
+
# Author: John Cowan <cowan@ccil.org>
|
|
2
|
+
# Date: 25 July 1997
|
|
3
|
+
#
|
|
4
|
+
# The following table maps SGML character entities from various
|
|
5
|
+
# public sets (namely, ISOamsa, ISOamsb, ISOamsc, ISOamsn, ISOamso,
|
|
6
|
+
# ISOamsr, ISObox, ISOcyr1, ISOcyr2, ISOdia, ISOgrk1, ISOgrk2,
|
|
7
|
+
# ISOgrk3, ISOgrk4, ISOlat1, ISOlat2, ISOnum, ISOpub, ISOtech,
|
|
8
|
+
# HTMLspecial, HTMLsymbol) to corresponding Unicode characters.
|
|
9
|
+
#
|
|
10
|
+
# The table has four tab-separated columns:
|
|
11
|
+
# Column 1: SGML character entity name
|
|
12
|
+
# Column 2: SGML public entity set
|
|
13
|
+
# Column 3: Unicode 2.0 character code
|
|
14
|
+
# Column 4: Unicode 2.0 character name (UPPER CASE)
|
|
15
|
+
# Entries which don't have Unicode equivalents have "0x????"
|
|
16
|
+
# in Column 3 and a lower case description (from the public entity
|
|
17
|
+
# set DTD) in Column 4. The mapping is not reversible, because many
|
|
18
|
+
# distinctions are unified away in Unicode, particularly between
|
|
19
|
+
# mathematical symbols.
|
|
20
|
+
#
|
|
21
|
+
# The table is sorted case-blind by SGML character entity name.
|
|
22
|
+
#
|
|
23
|
+
# The contents of this table are drawn from various sources, and
|
|
24
|
+
# are in the public domain.
|
|
25
|
+
#
|
|
26
|
+
Aacgr ISOgrk2 0x0386 # GREEK CAPITAL LETTER ALPHA WITH TONOS
|
|
27
|
+
aacgr ISOgrk2 0x03AC # GREEK SMALL LETTER ALPHA WITH TONOS
|
|
28
|
+
Aacute ISOlat1 0x00C1 # LATIN CAPITAL LETTER A WITH ACUTE
|
|
29
|
+
aacute ISOlat1 0x00E1 # LATIN SMALL LETTER A WITH ACUTE
|
|
30
|
+
Abreve ISOlat2 0x0102 # LATIN CAPITAL LETTER A WITH BREVE
|
|
31
|
+
abreve ISOlat2 0x0103 # LATIN SMALL LETTER A WITH BREVE
|
|
32
|
+
Acirc ISOlat1 0x00C2 # LATIN CAPITAL LETTER A WITH CIRCUMFLEX
|
|
33
|
+
acirc ISOlat1 0x00E2 # LATIN SMALL LETTER A WITH CIRCUMFLEX
|
|
34
|
+
acute ISOdia 0x00B4 # ACUTE ACCENT
|
|
35
|
+
Acy ISOcyr1 0x0410 # CYRILLIC CAPITAL LETTER A
|
|
36
|
+
acy ISOcyr1 0x0430 # CYRILLIC SMALL LETTER A
|
|
37
|
+
AElig ISOlat1 0x00C6 # LATIN CAPITAL LETTER AE
|
|
38
|
+
aelig ISOlat1 0x00E6 # LATIN SMALL LETTER AE
|
|
39
|
+
Agr ISOgrk1 0x0391 # GREEK CAPITAL LETTER ALPHA
|
|
40
|
+
agr ISOgrk1 0x03B1 # GREEK SMALL LETTER ALPHA
|
|
41
|
+
Agrave ISOlat1 0x00C0 # LATIN CAPITAL LETTER A WITH GRAVE
|
|
42
|
+
agrave ISOlat1 0x00E0 # LATIN SMALL LETTER A WITH GRAVE
|
|
43
|
+
alefsym HTMLsymbol 0x2135 # ALEF SYMBOL
|
|
44
|
+
aleph ISOtech 0x2135 # ALEF SYMBOL
|
|
45
|
+
Alpha HTMLsymbol 0x0391 # GREEK CAPITAL LETTER ALPHA
|
|
46
|
+
alpha ISOgrk3 0x03B1 # GREEK SMALL LETTER ALPHA
|
|
47
|
+
Amacr ISOlat2 0x0100 # LATIN CAPITAL LETTER A WITH MACRON
|
|
48
|
+
amacr ISOlat2 0x0101 # LATIN SMALL LETTER A WITH MACRON
|
|
49
|
+
amalg ISOamsb 0x2210 # N-ARY COPRODUCT
|
|
50
|
+
amp ISOnum 0x0026 # AMPERSAND
|
|
51
|
+
and ISOtech 0x2227 # LOGICAL AND
|
|
52
|
+
ang ISOamso 0x2220 # ANGLE
|
|
53
|
+
ang90 ISOtech 0x221F # RIGHT ANGLE
|
|
54
|
+
angmsd ISOamso 0x2221 # MEASURED ANGLE
|
|
55
|
+
angsph ISOtech 0x2222 # SPHERICAL ANGLE
|
|
56
|
+
angst ISOtech 0x212B # ANGSTROM SIGN
|
|
57
|
+
Aogon ISOlat2 0x0104 # LATIN CAPITAL LETTER A WITH OGONEK
|
|
58
|
+
aogon ISOlat2 0x0105 # LATIN SMALL LETTER A WITH OGONEK
|
|
59
|
+
ap ISOtech 0x2248 # ALMOST EQUAL TO
|
|
60
|
+
ape ISOamsr 0x224A # ALMOST EQUAL OR EQUAL TO
|
|
61
|
+
apos ISOnum 0x02BC # MODIFIER LETTER APOSTROPHE
|
|
62
|
+
Aring ISOlat1 0x00C5 # LATIN CAPITAL LETTER A WITH RING ABOVE
|
|
63
|
+
aring ISOlat1 0x00E5 # LATIN SMALL LETTER A WITH RING ABOVE
|
|
64
|
+
ast ISOnum 0x002A # ASTERISK
|
|
65
|
+
asymp ISOamsr 0x2248 # ALMOST EQUAL TO
|
|
66
|
+
Atilde ISOlat1 0x00C3 # LATIN CAPITAL LETTER A WITH TILDE
|
|
67
|
+
atilde ISOlat1 0x00E3 # LATIN SMALL LETTER A WITH TILDE
|
|
68
|
+
Auml ISOlat1 0x00C4 # LATIN CAPITAL LETTER A WITH DIAERESIS
|
|
69
|
+
auml ISOlat1 0x00E4 # LATIN SMALL LETTER A WITH DIAERESIS
|
|
70
|
+
b.alpha ISOgrk4 0x03B1 # GREEK SMALL LETTER ALPHA
|
|
71
|
+
barwed ISOamsb 0x22BC # NAND
|
|
72
|
+
Barwed ISOamsb 0x2306 # PERSPECTIVE
|
|
73
|
+
b.beta ISOgrk4 0x03B2 # GREEK SMALL LETTER BETA
|
|
74
|
+
b.chi ISOgrk4 0x03C7 # GREEK SMALL LETTER CHI
|
|
75
|
+
bcong ISOamsr 0x224C # ALL EQUAL TO
|
|
76
|
+
Bcy ISOcyr1 0x0411 # CYRILLIC CAPITAL LETTER BE
|
|
77
|
+
bcy ISOcyr1 0x0431 # CYRILLIC SMALL LETTER BE
|
|
78
|
+
b.Delta ISOgrk4 0x0394 # GREEK CAPITAL LETTER DELTA
|
|
79
|
+
b.delta ISOgrk4 0x03B4 # GREEK SMALL LETTER DELTA
|
|
80
|
+
bdquo HTMLspecial 0x201E # DOUBLE LOW-9 QUOTATION MARK
|
|
81
|
+
becaus ISOtech 0x2235 # BECAUSE
|
|
82
|
+
bepsi ISOamsr 0x220D # SMALL CONTAINS AS MEMBER
|
|
83
|
+
b.epsi ISOgrk4 0x03B5 # GREEK SMALL LETTER EPSILON
|
|
84
|
+
b.epsis ISOgrk4 0x03B5 # GREEK SMALL LETTER EPSILON
|
|
85
|
+
b.epsiv ISOgrk4 0x03B5 # GREEK SMALL LETTER EPSILON
|
|
86
|
+
bernou ISOtech 0x212C # SCRIPT CAPITAL B
|
|
87
|
+
Beta HTMLsymbol 0x0392 # GREEK CAPITAL LETTER BETA
|
|
88
|
+
beta ISOgrk3 0x03B2 # GREEK SMALL LETTER BETA
|
|
89
|
+
b.eta ISOgrk4 0x03B7 # GREEK SMALL LETTER ETA
|
|
90
|
+
beth ISOamso 0x2136 # BET SYMBOL
|
|
91
|
+
b.Gamma ISOgrk4 0x0393 # GREEK CAPITAL LETTER GAMMA
|
|
92
|
+
b.gamma ISOgrk4 0x03B3 # GREEK SMALL LETTER GAMMA
|
|
93
|
+
b.gammad ISOgrk4 0x03DC # GREEK LETTER DIGAMMA
|
|
94
|
+
Bgr ISOgrk1 0x0392 # GREEK CAPITAL LETTER BETA
|
|
95
|
+
bgr ISOgrk1 0x03B2 # GREEK SMALL LETTER BETA
|
|
96
|
+
b.iota ISOgrk4 0x03B9 # GREEK SMALL LETTER IOTA
|
|
97
|
+
b.kappa ISOgrk4 0x03BA # GREEK SMALL LETTER KAPPA
|
|
98
|
+
b.kappav ISOgrk4 0x03F0 # GREEK KAPPA SYMBOL
|
|
99
|
+
b.Lambda ISOgrk4 0x039B # GREEK CAPITAL LETTER LAMDA
|
|
100
|
+
b.lambda ISOgrk4 0x03BB # GREEK SMALL LETTER LAMDA
|
|
101
|
+
blank ISOpub 0x2423 # OPEN BOX
|
|
102
|
+
blk12 ISOpub 0x2592 # MEDIUM SHADE
|
|
103
|
+
blk14 ISOpub 0x2591 # LIGHT SHADE
|
|
104
|
+
blk34 ISOpub 0x2593 # DARK SHADE
|
|
105
|
+
block ISOpub 0x2588 # FULL BLOCK
|
|
106
|
+
b.mu ISOgrk4 0x03BC # GREEK SMALL LETTER MU
|
|
107
|
+
b.nu ISOgrk4 0x03BD # GREEK SMALL LETTER NU
|
|
108
|
+
b.Omega ISOgrk4 0x03A9 # GREEK CAPITAL LETTER OMEGA
|
|
109
|
+
b.omega ISOgrk4 0x03CE # GREEK SMALL LETTER OMEGA WITH TONOS
|
|
110
|
+
bottom ISOtech 0x22A5 # UP TACK
|
|
111
|
+
bowtie ISOamsr 0x22C8 # BOWTIE
|
|
112
|
+
boxdl ISObox 0x2510 # BOX DRAWINGS LIGHT DOWN AND LEFT
|
|
113
|
+
boxdL ISObox 0x2555 # BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE
|
|
114
|
+
boxDl ISObox 0x2556 # BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE
|
|
115
|
+
boxDL ISObox 0x2557 # BOX DRAWINGS DOUBLE DOWN AND LEFT
|
|
116
|
+
boxdr ISObox 0x250C # BOX DRAWINGS LIGHT DOWN AND RIGHT
|
|
117
|
+
boxdR ISObox 0x2552 # BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
|
|
118
|
+
boxDr ISObox 0x2553 # BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE
|
|
119
|
+
boxDR ISObox 0x2554 # BOX DRAWINGS DOUBLE DOWN AND RIGHT
|
|
120
|
+
boxh ISObox 0x2500 # BOX DRAWINGS LIGHT HORIZONTAL
|
|
121
|
+
boxH ISObox 0x2550 # BOX DRAWINGS DOUBLE HORIZONTAL
|
|
122
|
+
boxhd ISObox 0x252C # BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
|
|
123
|
+
boxHd ISObox 0x2564 # BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE
|
|
124
|
+
boxhD ISObox 0x2565 # BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE
|
|
125
|
+
boxHD ISObox 0x2566 # BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
|
|
126
|
+
boxhu ISObox 0x2534 # BOX DRAWINGS LIGHT UP AND HORIZONTAL
|
|
127
|
+
boxHu ISObox 0x2567 # BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
|
|
128
|
+
boxhU ISObox 0x2568 # BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
|
|
129
|
+
boxHU ISObox 0x2569 # BOX DRAWINGS DOUBLE UP AND HORIZONTAL
|
|
130
|
+
boxul ISObox 0x2518 # BOX DRAWINGS LIGHT UP AND LEFT
|
|
131
|
+
boxuL ISObox 0x255B # BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
|
|
132
|
+
boxUl ISObox 0x255C # BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
|
|
133
|
+
boxUL ISObox 0x255D # BOX DRAWINGS DOUBLE UP AND LEFT
|
|
134
|
+
boxur ISObox 0x2514 # BOX DRAWINGS LIGHT UP AND RIGHT
|
|
135
|
+
boxuR ISObox 0x2558 # BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
|
|
136
|
+
boxUr ISObox 0x2559 # BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
|
|
137
|
+
boxUR ISObox 0x255A # BOX DRAWINGS DOUBLE UP AND RIGHT
|
|
138
|
+
boxv ISObox 0x2502 # BOX DRAWINGS LIGHT VERTICAL
|
|
139
|
+
boxV ISObox 0x2551 # BOX DRAWINGS DOUBLE VERTICAL
|
|
140
|
+
boxvh ISObox 0x253C # BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
|
|
141
|
+
boxvH ISObox 0x256A # BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
|
|
142
|
+
boxVh ISObox 0x256B # BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE
|
|
143
|
+
boxVH ISObox 0x256C # BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
|
|
144
|
+
boxvl ISObox 0x2524 # BOX DRAWINGS LIGHT VERTICAL AND LEFT
|
|
145
|
+
boxvL ISObox 0x2561 # BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
|
|
146
|
+
boxVl ISObox 0x2562 # BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE
|
|
147
|
+
boxVL ISObox 0x2563 # BOX DRAWINGS DOUBLE VERTICAL AND LEFT
|
|
148
|
+
boxvr ISObox 0x251C # BOX DRAWINGS LIGHT VERTICAL AND RIGHT
|
|
149
|
+
boxvR ISObox 0x255E # BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
|
|
150
|
+
boxVr ISObox 0x255F # BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
|
|
151
|
+
boxVR ISObox 0x2560 # BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
|
|
152
|
+
b.Phi ISOgrk4 0x03A6 # GREEK CAPITAL LETTER PHI
|
|
153
|
+
b.phis ISOgrk4 0x03C6 # GREEK SMALL LETTER PHI
|
|
154
|
+
b.phiv ISOgrk4 0x03D5 # GREEK PHI SYMBOL
|
|
155
|
+
b.Pi ISOgrk4 0x03A0 # GREEK CAPITAL LETTER PI
|
|
156
|
+
b.pi ISOgrk4 0x03C0 # GREEK SMALL LETTER PI
|
|
157
|
+
b.piv ISOgrk4 0x03D6 # GREEK PI SYMBOL
|
|
158
|
+
bprime ISOamso 0x2035 # REVERSED PRIME
|
|
159
|
+
b.Psi ISOgrk4 0x03A8 # GREEK CAPITAL LETTER PSI
|
|
160
|
+
b.psi ISOgrk4 0x03C8 # GREEK SMALL LETTER PSI
|
|
161
|
+
breve ISOdia 0x02D8 # BREVE
|
|
162
|
+
b.rho ISOgrk4 0x03C1 # GREEK SMALL LETTER RHO
|
|
163
|
+
b.rhov ISOgrk4 0x03F1 # GREEK RHO SYMBOL
|
|
164
|
+
brvbar ISOnum 0x00A6 # BROKEN BAR
|
|
165
|
+
b.Sigma ISOgrk4 0x03A3 # GREEK CAPITAL LETTER SIGMA
|
|
166
|
+
b.sigma ISOgrk4 0x03C3 # GREEK SMALL LETTER SIGMA
|
|
167
|
+
b.sigmav ISOgrk4 0x03C2 # GREEK SMALL LETTER FINAL SIGMA
|
|
168
|
+
bsim ISOamsr 0x223D # REVERSED TILDE
|
|
169
|
+
bsime ISOamsr 0x22CD # REVERSED TILDE EQUALS
|
|
170
|
+
bsol ISOnum 0x005C # REVERSE SOLIDUS
|
|
171
|
+
b.tau ISOgrk4 0x03C4 # GREEK SMALL LETTER TAU
|
|
172
|
+
b.Theta ISOgrk4 0x0398 # GREEK CAPITAL LETTER THETA
|
|
173
|
+
b.thetas ISOgrk4 0x03B8 # GREEK SMALL LETTER THETA
|
|
174
|
+
b.thetav ISOgrk4 0x03D1 # GREEK THETA SYMBOL
|
|
175
|
+
bull ISOpub 0x2022 # BULLET
|
|
176
|
+
bump ISOamsr 0x224E # GEOMETRICALLY EQUIVALENT TO
|
|
177
|
+
bumpe ISOamsr 0x224F # DIFFERENCE BETWEEN
|
|
178
|
+
b.Upsi ISOgrk4 0x03A5 # GREEK CAPITAL LETTER UPSILON
|
|
179
|
+
b.upsi ISOgrk4 0x03C5 # GREEK SMALL LETTER UPSILON
|
|
180
|
+
b.Xi ISOgrk4 0x039E # GREEK CAPITAL LETTER XI
|
|
181
|
+
b.xi ISOgrk4 0x03BE # GREEK SMALL LETTER XI
|
|
182
|
+
b.zeta ISOgrk4 0x03B6 # GREEK SMALL LETTER ZETA
|
|
183
|
+
Cacute ISOlat2 0x0106 # LATIN CAPITAL LETTER C WITH ACUTE
|
|
184
|
+
cacute ISOlat2 0x0107 # LATIN SMALL LETTER C WITH ACUTE
|
|
185
|
+
Cap ISOamsb 0x22D2 # DOUBLE INTERSECTION
|
|
186
|
+
cap ISOtech 0x2229 # INTERSECTION
|
|
187
|
+
caret ISOpub 0x2041 # CARET INSERTION POINT
|
|
188
|
+
caron ISOdia 0x02C7 # CARON
|
|
189
|
+
Ccaron ISOlat2 0x010C # LATIN CAPITAL LETTER C WITH CARON
|
|
190
|
+
ccaron ISOlat2 0x010D # LATIN SMALL LETTER C WITH CARON
|
|
191
|
+
Ccedil ISOlat1 0x00C7 # LATIN CAPITAL LETTER C WITH CEDILLA
|
|
192
|
+
ccedil ISOlat1 0x00E7 # LATIN SMALL LETTER C WITH CEDILLA
|
|
193
|
+
Ccirc ISOlat2 0x0108 # LATIN CAPITAL LETTER C WITH CIRCUMFLEX
|
|
194
|
+
ccirc ISOlat2 0x0109 # LATIN SMALL LETTER C WITH CIRCUMFLEX
|
|
195
|
+
Cdot ISOlat2 0x010A # LATIN CAPITAL LETTER C WITH DOT ABOVE
|
|
196
|
+
cdot ISOlat2 0x010B # LATIN SMALL LETTER C WITH DOT ABOVE
|
|
197
|
+
cedil ISOdia 0x00B8 # CEDILLA
|
|
198
|
+
cent ISOnum 0x00A2 # CENT SIGN
|
|
199
|
+
CHcy ISOcyr1 0x0427 # CYRILLIC CAPITAL LETTER CHE
|
|
200
|
+
chcy ISOcyr1 0x0447 # CYRILLIC SMALL LETTER CHE
|
|
201
|
+
check ISOpub 0x2713 # CHECK MARK
|
|
202
|
+
Chi HTMLsymbol 0x03A7 # GREEK CAPITAL LETTER CHI
|
|
203
|
+
chi ISOgrk3 0x03C7 # GREEK SMALL LETTER CHI
|
|
204
|
+
cir ISOpub 0x25CB # WHITE CIRCLE
|
|
205
|
+
circ ISOdia 0x02C6 # MODIFIER LETTER CIRCUMFLEX ACCENT
|
|
206
|
+
cire ISOamsr 0x2257 # RING EQUAL TO
|
|
207
|
+
clubs ISOpub 0x2663 # BLACK CLUB SUIT
|
|
208
|
+
colon ISOnum 0x003A # COLON
|
|
209
|
+
colone ISOamsr 0x2254 # COLON EQUALS
|
|
210
|
+
comma ISOnum 0x002C # COMMA
|
|
211
|
+
commat ISOnum 0x0040 # COMMERCIAL AT
|
|
212
|
+
comp ISOamso 0x2201 # COMPLEMENT
|
|
213
|
+
compfn ISOtech 0x2218 # RING OPERATOR
|
|
214
|
+
cong ISOtech 0x2245 # APPROXIMATELY EQUAL TO
|
|
215
|
+
conint ISOtech 0x222E # CONTOUR INTEGRAL
|
|
216
|
+
coprod ISOamsb 0x2210 # N-ARY COPRODUCT
|
|
217
|
+
copy ISOnum 0x00A9 # COPYRIGHT SIGN
|
|
218
|
+
copysr ISOpub 0x2117 # SOUND RECORDING COPYRIGHT
|
|
219
|
+
crarr HTMLsymbol 0x21B5 # DOWNWARDS ARROW WITH CORNER LEFTWARDS
|
|
220
|
+
cross ISOpub 0x2717 # BALLOT X
|
|
221
|
+
cuepr ISOamsr 0x22DE # EQUAL TO OR PRECEDES
|
|
222
|
+
cuesc ISOamsr 0x22DF # EQUAL TO OR SUCCEEDS
|
|
223
|
+
cularr ISOamsa 0x21B6 # ANTICLOCKWISE TOP SEMICIRCLE ARROW
|
|
224
|
+
Cup ISOamsb 0x22D3 # DOUBLE UNION
|
|
225
|
+
cup ISOtech 0x222A # UNION
|
|
226
|
+
cupre ISOamsr 0x227C # PRECEDES OR EQUAL TO
|
|
227
|
+
curarr ISOamsa 0x21B7 # CLOCKWISE TOP SEMICIRCLE ARROW
|
|
228
|
+
curren ISOnum 0x00A4 # CURRENCY SIGN
|
|
229
|
+
cuvee ISOamsb 0x22CE # CURLY LOGICAL OR
|
|
230
|
+
cuwed ISOamsb 0x22CF # CURLY LOGICAL AND
|
|
231
|
+
dagger ISOpub 0x2020 # DAGGER
|
|
232
|
+
Dagger ISOpub 0x2021 # DOUBLE DAGGER
|
|
233
|
+
daleth ISOamso 0x2138 # DALET SYMBOL
|
|
234
|
+
dArr ISOamsa 0x21D3 # DOWNWARDS DOUBLE ARROW
|
|
235
|
+
darr ISOnum 0x2193 # DOWNWARDS ARROW
|
|
236
|
+
darr2 ISOamsa 0x21CA # DOWNWARDS PAIRED ARROWS
|
|
237
|
+
dash ISOpub 0x2010 # HYPHEN
|
|
238
|
+
dashv ISOamsr 0x22A3 # LEFT TACK
|
|
239
|
+
dblac ISOdia 0x02DD # DOUBLE ACUTE ACCENT
|
|
240
|
+
Dcaron ISOlat2 0x010E # LATIN CAPITAL LETTER D WITH CARON
|
|
241
|
+
dcaron ISOlat2 0x010F # LATIN SMALL LETTER D WITH CARON
|
|
242
|
+
Dcy ISOcyr1 0x0414 # CYRILLIC CAPITAL LETTER DE
|
|
243
|
+
dcy ISOcyr1 0x0434 # CYRILLIC SMALL LETTER DE
|
|
244
|
+
deg ISOnum 0x00B0 # DEGREE SIGN
|
|
245
|
+
Delta ISOgrk3 0x0394 # GREEK CAPITAL LETTER DELTA
|
|
246
|
+
delta ISOgrk3 0x03B4 # GREEK SMALL LETTER DELTA
|
|
247
|
+
Dgr ISOgrk1 0x0394 # GREEK CAPITAL LETTER DELTA
|
|
248
|
+
dgr ISOgrk1 0x03B4 # GREEK SMALL LETTER DELTA
|
|
249
|
+
dharl ISOamsa 0x21C3 # DOWNWARDS HARPOON WITH BARB LEFTWARDS
|
|
250
|
+
dharr ISOamsa 0x21C2 # DOWNWARDS HARPOON WITH BARB RIGHTWARDS
|
|
251
|
+
diam ISOamsb 0x22C4 # DIAMOND OPERATOR
|
|
252
|
+
diams ISOpub 0x2666 # BLACK DIAMOND SUIT
|
|
253
|
+
die ISOdia 0x00A8 # DIAERESIS
|
|
254
|
+
divide ISOnum 0x00F7 # DIVISION SIGN
|
|
255
|
+
divonx ISOamsb 0x22C7 # DIVISION TIMES
|
|
256
|
+
DJcy ISOcyr2 0x0402 # CYRILLIC CAPITAL LETTER DJE
|
|
257
|
+
djcy ISOcyr2 0x0452 # CYRILLIC SMALL LETTER DJE
|
|
258
|
+
dlarr ISOamsa 0x2199 # SOUTH WEST ARROW
|
|
259
|
+
dlcorn ISOamsc 0x231E # BOTTOM LEFT CORNER
|
|
260
|
+
dlcrop ISOpub 0x230D # BOTTOM LEFT CROP
|
|
261
|
+
dollar ISOnum 0x0024 # DOLLAR SIGN
|
|
262
|
+
dot ISOdia 0x02D9 # DOT ABOVE
|
|
263
|
+
Dot ISOtech 0x00A8 # DIAERESIS
|
|
264
|
+
DotDot ISOtech 0x20DC # COMBINING FOUR DOTS ABOVE
|
|
265
|
+
drarr ISOamsa 0x2198 # SOUTH EAST ARROW
|
|
266
|
+
drcorn ISOamsc 0x231F # BOTTOM RIGHT CORNER
|
|
267
|
+
drcrop ISOpub 0x230C # BOTTOM RIGHT CROP
|
|
268
|
+
DScy ISOcyr2 0x0405 # CYRILLIC CAPITAL LETTER DZE
|
|
269
|
+
dscy ISOcyr2 0x0455 # CYRILLIC SMALL LETTER DZE
|
|
270
|
+
Dstrok ISOlat2 0x0110 # LATIN CAPITAL LETTER D WITH STROKE
|
|
271
|
+
dstrok ISOlat2 0x0111 # LATIN SMALL LETTER D WITH STROKE
|
|
272
|
+
dtri ISOpub 0x25BF # WHITE DOWN-POINTING SMALL TRIANGLE
|
|
273
|
+
dtrif ISOpub 0x25BE # BLACK DOWN-POINTING SMALL TRIANGLE
|
|
274
|
+
DZcy ISOcyr2 0x040F # CYRILLIC CAPITAL LETTER DZHE
|
|
275
|
+
dzcy ISOcyr2 0x045F # CYRILLIC SMALL LETTER DZHE
|
|
276
|
+
Eacgr ISOgrk2 0x0388 # GREEK CAPITAL LETTER EPSILON WITH TONOS
|
|
277
|
+
eacgr ISOgrk2 0x03AD # GREEK SMALL LETTER EPSILON WITH TONOS
|
|
278
|
+
Eacute ISOlat1 0x00C9 # LATIN CAPITAL LETTER E WITH ACUTE
|
|
279
|
+
eacute ISOlat1 0x00E9 # LATIN SMALL LETTER E WITH ACUTE
|
|
280
|
+
Ecaron ISOlat2 0x011A # LATIN CAPITAL LETTER E WITH CARON
|
|
281
|
+
ecaron ISOlat2 0x011B # LATIN SMALL LETTER E WITH CARON
|
|
282
|
+
ecir ISOamsr 0x2256 # RING IN EQUAL TO
|
|
283
|
+
Ecirc ISOlat1 0x00CA # LATIN CAPITAL LETTER E WITH CIRCUMFLEX
|
|
284
|
+
ecirc ISOlat1 0x00EA # LATIN SMALL LETTER E WITH CIRCUMFLEX
|
|
285
|
+
ecolon ISOamsr 0x2255 # EQUALS COLON
|
|
286
|
+
Ecy ISOcyr1 0x042D # CYRILLIC CAPITAL LETTER E
|
|
287
|
+
ecy ISOcyr1 0x044D # CYRILLIC SMALL LETTER E
|
|
288
|
+
eDot ISOamsr 0x2251 # GEOMETRICALLY EQUAL TO
|
|
289
|
+
Edot ISOlat2 0x0116 # LATIN CAPITAL LETTER E WITH DOT ABOVE
|
|
290
|
+
edot ISOlat2 0x0117 # LATIN SMALL LETTER E WITH DOT ABOVE
|
|
291
|
+
EEacgr ISOgrk2 0x0389 # GREEK CAPITAL LETTER ETA WITH TONOS
|
|
292
|
+
eeacgr ISOgrk2 0x03AE # GREEK SMALL LETTER ETA WITH TONOS
|
|
293
|
+
EEgr ISOgrk1 0x0397 # GREEK CAPITAL LETTER ETA
|
|
294
|
+
eegr ISOgrk1 0x03B7 # GREEK SMALL LETTER ETA
|
|
295
|
+
efDot ISOamsr 0x2252 # APPROXIMATELY EQUAL TO OR THE IMAGE OF
|
|
296
|
+
Egr ISOgrk1 0x0395 # GREEK CAPITAL LETTER EPSILON
|
|
297
|
+
egr ISOgrk1 0x03B5 # GREEK SMALL LETTER EPSILON
|
|
298
|
+
Egrave ISOlat1 0x00C8 # LATIN CAPITAL LETTER E WITH GRAVE
|
|
299
|
+
egrave ISOlat1 0x00E8 # LATIN SMALL LETTER E WITH GRAVE
|
|
300
|
+
egs ISOamsr 0x22DD # EQUAL TO OR GREATER-THAN
|
|
301
|
+
ell ISOamso 0x2113 # SCRIPT SMALL L
|
|
302
|
+
els ISOamsr 0x22DC # EQUAL TO OR LESS-THAN
|
|
303
|
+
Emacr ISOlat2 0x0112 # LATIN CAPITAL LETTER E WITH MACRON
|
|
304
|
+
emacr ISOlat2 0x0113 # LATIN SMALL LETTER E WITH MACRON
|
|
305
|
+
empty ISOamso 0x2205 # EMPTY SET
|
|
306
|
+
emsp ISOpub 0x2003 # EM SPACE
|
|
307
|
+
emsp13 ISOpub 0x2004 # THREE-PER-EM SPACE
|
|
308
|
+
emsp14 ISOpub 0x2005 # FOUR-PER-EM SPACE
|
|
309
|
+
ENG ISOlat2 0x014A # LATIN CAPITAL LETTER ENG
|
|
310
|
+
eng ISOlat2 0x014B # LATIN SMALL LETTER ENG
|
|
311
|
+
ensp ISOpub 0x2002 # EN SPACE
|
|
312
|
+
Eogon ISOlat2 0x0118 # LATIN CAPITAL LETTER E WITH OGONEK
|
|
313
|
+
eogon ISOlat2 0x0119 # LATIN SMALL LETTER E WITH OGONEK
|
|
314
|
+
epsi ISOgrk3 0x03B5 # GREEK SMALL LETTER EPSILON
|
|
315
|
+
Epsilon HTMLsymbol 0x0395 # GREEK CAPITAL LETTER EPSILON
|
|
316
|
+
epsilon HTMLsymbol 0x03B5 # GREEK SMALL LETTER EPSILON
|
|
317
|
+
epsis ISOgrk3 0x220A # SMALL ELEMENT OF
|
|
318
|
+
epsiv ISOgrk3 0x???? # variant epsilon
|
|
319
|
+
equals ISOnum 0x003D # EQUALS SIGN
|
|
320
|
+
equiv ISOtech 0x2261 # IDENTICAL TO
|
|
321
|
+
erDot ISOamsr 0x2253 # IMAGE OF OR APPROXIMATELY EQUAL TO
|
|
322
|
+
esdot ISOamsr 0x2250 # APPROACHES THE LIMIT
|
|
323
|
+
Eta HTMLsymbol 0x0397 # GREEK CAPITAL LETTER ETA
|
|
324
|
+
eta ISOgrk3 0x03B7 # GREEK SMALL LETTER ETA
|
|
325
|
+
ETH ISOlat1 0x00D0 # LATIN CAPITAL LETTER ETH
|
|
326
|
+
eth ISOlat1 0x00F0 # LATIN SMALL LETTER ETH
|
|
327
|
+
Euml ISOlat1 0x00CB # LATIN CAPITAL LETTER E WITH DIAERESIS
|
|
328
|
+
euml ISOlat1 0x00EB # LATIN SMALL LETTER E WITH DIAERESIS
|
|
329
|
+
excl ISOnum 0x0021 # EXCLAMATION MARK
|
|
330
|
+
exist ISOtech 0x2203 # THERE EXISTS
|
|
331
|
+
Fcy ISOcyr1 0x0424 # CYRILLIC CAPITAL LETTER EF
|
|
332
|
+
fcy ISOcyr1 0x0444 # CYRILLIC SMALL LETTER EF
|
|
333
|
+
female ISOpub 0x2640 # FEMALE SIGN
|
|
334
|
+
ffilig ISOpub 0xFB03 # LATIN SMALL LIGATURE FFI
|
|
335
|
+
fflig ISOpub 0xFB00 # LATIN SMALL LIGATURE FF
|
|
336
|
+
ffllig ISOpub 0xFB04 # LATIN SMALL LIGATURE FFL
|
|
337
|
+
filig ISOpub 0xFB01 # LATIN SMALL LIGATURE FI
|
|
338
|
+
fjlig ISOpub 0x???? # fj ligature
|
|
339
|
+
flat ISOpub 0x266D # MUSIC FLAT SIGN
|
|
340
|
+
fllig ISOpub 0xFB02 # LATIN SMALL LIGATURE FL
|
|
341
|
+
fnof ISOtech 0x0192 # LATIN SMALL LETTER F WITH HOOK
|
|
342
|
+
forall ISOtech 0x2200 # FOR ALL
|
|
343
|
+
fork ISOamsr 0x22D4 # PITCHFORK
|
|
344
|
+
frac12 ISOnum 0x00BD # VULGAR FRACTION ONE HALF
|
|
345
|
+
frac13 ISOpub 0x2153 # VULGAR FRACTION ONE THIRD
|
|
346
|
+
frac14 ISOnum 0x00BC # VULGAR FRACTION ONE QUARTER
|
|
347
|
+
frac15 ISOpub 0x2155 # VULGAR FRACTION ONE FIFTH
|
|
348
|
+
frac16 ISOpub 0x2159 # VULGAR FRACTION ONE SIXTH
|
|
349
|
+
frac18 ISOnum 0x215B # VULGAR FRACTION ONE EIGHTH
|
|
350
|
+
frac23 ISOpub 0x2154 # VULGAR FRACTION TWO THIRDS
|
|
351
|
+
frac25 ISOpub 0x2156 # VULGAR FRACTION TWO FIFTHS
|
|
352
|
+
frac34 ISOnum 0x00BE # VULGAR FRACTION THREE QUARTERS
|
|
353
|
+
frac35 ISOpub 0x2157 # VULGAR FRACTION THREE FIFTHS
|
|
354
|
+
frac38 ISOnum 0x215C # VULGAR FRACTION THREE EIGHTHS
|
|
355
|
+
frac45 ISOpub 0x2158 # VULGAR FRACTION FOUR FIFTHS
|
|
356
|
+
frac56 ISOpub 0x215A # VULGAR FRACTION FIVE SIXTHS
|
|
357
|
+
frac58 ISOnum 0x215D # VULGAR FRACTION FIVE EIGHTHS
|
|
358
|
+
frac78 ISOnum 0x215E # VULGAR FRACTION SEVEN EIGHTHS
|
|
359
|
+
frasl HTMLsymbol 0x2044 # FRACTION SLASH
|
|
360
|
+
frown ISOamsr 0x2322 # FROWN
|
|
361
|
+
gacute ISOlat2 0x01F5 # LATIN SMALL LETTER G WITH ACUTE
|
|
362
|
+
Gamma ISOgrk3 0x0393 # GREEK CAPITAL LETTER GAMMA
|
|
363
|
+
gamma ISOgrk3 0x03B3 # GREEK SMALL LETTER GAMMA
|
|
364
|
+
gammad ISOgrk3 0x03DC # GREEK LETTER DIGAMMA
|
|
365
|
+
gap ISOamsr 0x???? # greater-than, approximately equal to
|
|
366
|
+
Gbreve ISOlat2 0x011E # LATIN CAPITAL LETTER G WITH BREVE
|
|
367
|
+
gbreve ISOlat2 0x011F # LATIN SMALL LETTER G WITH BREVE
|
|
368
|
+
Gcedil ISOlat2 0x0122 # LATIN CAPITAL LETTER G WITH CEDILLA
|
|
369
|
+
gcedil ISOlat2 0x0123 # LATIN SMALL LETTER G WITH CEDILLA
|
|
370
|
+
Gcirc ISOlat2 0x011C # LATIN CAPITAL LETTER G WITH CIRCUMFLEX
|
|
371
|
+
gcirc ISOlat2 0x011D # LATIN SMALL LETTER G WITH CIRCUMFLEX
|
|
372
|
+
Gcy ISOcyr1 0x0413 # CYRILLIC CAPITAL LETTER GHE
|
|
373
|
+
gcy ISOcyr1 0x0433 # CYRILLIC SMALL LETTER GHE
|
|
374
|
+
Gdot ISOlat2 0x0120 # LATIN CAPITAL LETTER G WITH DOT ABOVE
|
|
375
|
+
gdot ISOlat2 0x0121 # LATIN SMALL LETTER G WITH DOT ABOVE
|
|
376
|
+
gE ISOamsr 0x2267 # GREATER-THAN OVER EQUAL TO
|
|
377
|
+
ge ISOtech 0x2265 # GREATER-THAN OR EQUAL TO
|
|
378
|
+
gEl ISOamsr 0x???? # greater-than, double equals, less-than
|
|
379
|
+
gel ISOamsr 0x22DB # GREATER-THAN EQUAL TO OR LESS-THAN
|
|
380
|
+
ges ISOamsr 0x2265 # GREATER-THAN OR EQUAL TO
|
|
381
|
+
Gg ISOamsr 0x22D9 # VERY MUCH GREATER-THAN
|
|
382
|
+
Ggr ISOgrk1 0x0393 # GREEK CAPITAL LETTER GAMMA
|
|
383
|
+
ggr ISOgrk1 0x03B3 # GREEK SMALL LETTER GAMMA
|
|
384
|
+
gimel ISOamso 0x2137 # GIMEL SYMBOL
|
|
385
|
+
GJcy ISOcyr2 0x0403 # CYRILLIC CAPITAL LETTER GJE
|
|
386
|
+
gjcy ISOcyr2 0x0453 # CYRILLIC SMALL LETTER GJE
|
|
387
|
+
gl ISOamsr 0x2277 # GREATER-THAN OR LESS-THAN
|
|
388
|
+
gnap ISOamsn 0x???? # greater-than, not approximately equal to
|
|
389
|
+
gne ISOamsn 0x2269 # GREATER-THAN BUT NOT EQUAL TO
|
|
390
|
+
gnE ISOamsn 0x2269 # GREATER-THAN BUT NOT EQUAL TO
|
|
391
|
+
gnsim ISOamsn 0x22E7 # GREATER-THAN BUT NOT EQUIVALENT TO
|
|
392
|
+
grave ISOdia 0x0060 # GRAVE ACCENT
|
|
393
|
+
gsdot ISOamsr 0x22D7 # GREATER-THAN WITH DOT
|
|
394
|
+
gsim ISOamsr 0x2273 # GREATER-THAN OR EQUIVALENT TO
|
|
395
|
+
Gt ISOamsr 0x226B # MUCH GREATER-THAN
|
|
396
|
+
gt ISOnum 0x003E # GREATER-THAN SIGN
|
|
397
|
+
gvnE ISOamsn 0x2269 # GREATER-THAN BUT NOT EQUAL TO
|
|
398
|
+
hairsp ISOpub 0x200A # HAIR SPACE
|
|
399
|
+
half ISOnum 0x00BD # VULGAR FRACTION ONE HALF
|
|
400
|
+
hamilt ISOtech 0x210B # SCRIPT CAPITAL H
|
|
401
|
+
HARDcy ISOcyr1 0x042A # CYRILLIC CAPITAL LETTER HARD SIGN
|
|
402
|
+
hardcy ISOcyr1 0x044A # CYRILLIC SMALL LETTER HARD SIGN
|
|
403
|
+
harr ISOamsa 0x2194 # LEFT RIGHT ARROW
|
|
404
|
+
hArr ISOamsa 0x21D4 # LEFT RIGHT DOUBLE ARROW
|
|
405
|
+
harrw ISOamsa 0x21AD # LEFT RIGHT WAVE ARROW
|
|
406
|
+
Hcirc ISOlat2 0x0124 # LATIN CAPITAL LETTER H WITH CIRCUMFLEX
|
|
407
|
+
hcirc ISOlat2 0x0125 # LATIN SMALL LETTER H WITH CIRCUMFLEX
|
|
408
|
+
hearts ISOpub 0x2665 # BLACK HEART SUIT
|
|
409
|
+
hellip ISOpub 0x2026 # HORIZONTAL ELLIPSIS
|
|
410
|
+
horbar ISOnum 0x2015 # HORIZONTAL BAR
|
|
411
|
+
Hstrok ISOlat2 0x0126 # LATIN CAPITAL LETTER H WITH STROKE
|
|
412
|
+
hstrok ISOlat2 0x0127 # LATIN SMALL LETTER H WITH STROKE
|
|
413
|
+
hybull ISOpub 0x2043 # HYPHEN BULLET
|
|
414
|
+
hyphen ISOnum 0x002D # HYPHEN-MINUS
|
|
415
|
+
Iacgr ISOgrk2 0x038A # GREEK CAPITAL LETTER IOTA WITH TONOS
|
|
416
|
+
iacgr ISOgrk2 0x03AF # GREEK SMALL LETTER IOTA WITH TONOS
|
|
417
|
+
Iacute ISOlat1 0x00CD # LATIN CAPITAL LETTER I WITH ACUTE
|
|
418
|
+
iacute ISOlat1 0x00ED # LATIN SMALL LETTER I WITH ACUTE
|
|
419
|
+
Icirc ISOlat1 0x00CE # LATIN CAPITAL LETTER I WITH CIRCUMFLEX
|
|
420
|
+
icirc ISOlat1 0x00EE # LATIN SMALL LETTER I WITH CIRCUMFLEX
|
|
421
|
+
Icy ISOcyr1 0x0418 # CYRILLIC CAPITAL LETTER I
|
|
422
|
+
icy ISOcyr1 0x0438 # CYRILLIC SMALL LETTER I
|
|
423
|
+
idiagr ISOgrk2 0x0390 # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
|
|
424
|
+
Idigr ISOgrk2 0x03AA # GREEK CAPITAL LETTER IOTA WITH DIALYTIKA
|
|
425
|
+
idigr ISOgrk2 0x03CA # GREEK SMALL LETTER IOTA WITH DIALYTIKA
|
|
426
|
+
Idot ISOlat2 0x0130 # LATIN CAPITAL LETTER I WITH DOT ABOVE
|
|
427
|
+
IEcy ISOcyr1 0x0415 # CYRILLIC CAPITAL LETTER IE
|
|
428
|
+
iecy ISOcyr1 0x0435 # CYRILLIC SMALL LETTER IE
|
|
429
|
+
iexcl ISOnum 0x00A1 # INVERTED EXCLAMATION MARK
|
|
430
|
+
iff ISOtech 0x21D4 # LEFT RIGHT DOUBLE ARROW
|
|
431
|
+
Igr ISOgrk1 0x0399 # GREEK CAPITAL LETTER IOTA
|
|
432
|
+
igr ISOgrk1 0x03B9 # GREEK SMALL LETTER IOTA
|
|
433
|
+
Igrave ISOlat1 0x00CC # LATIN CAPITAL LETTER I WITH GRAVE
|
|
434
|
+
igrave ISOlat1 0x00EC # LATIN SMALL LETTER I WITH GRAVE
|
|
435
|
+
IJlig ISOlat2 0x0132 # LATIN CAPITAL LIGATURE IJ
|
|
436
|
+
ijlig ISOlat2 0x0133 # LATIN SMALL LIGATURE IJ
|
|
437
|
+
Imacr ISOlat2 0x012A # LATIN CAPITAL LETTER I WITH MACRON
|
|
438
|
+
imacr ISOlat2 0x012B # LATIN SMALL LETTER I WITH MACRON
|
|
439
|
+
image ISOamso 0x2111 # BLACK-LETTER CAPITAL I
|
|
440
|
+
incare ISOpub 0x2105 # CARE OF
|
|
441
|
+
infin ISOtech 0x221E # INFINITY
|
|
442
|
+
inodot ISOamso 0x0131 # LATIN SMALL LETTER DOTLESS I
|
|
443
|
+
inodot ISOlat2 0x0131 # LATIN SMALL LETTER DOTLESS I
|
|
444
|
+
int ISOtech 0x222B # INTEGRAL
|
|
445
|
+
intcal ISOamsb 0x22BA # INTERCALATE
|
|
446
|
+
IOcy ISOcyr1 0x0401 # CYRILLIC CAPITAL LETTER IO
|
|
447
|
+
iocy ISOcyr1 0x0451 # CYRILLIC SMALL LETTER IO
|
|
448
|
+
Iogon ISOlat2 0x012E # LATIN CAPITAL LETTER I WITH OGONEK
|
|
449
|
+
iogon ISOlat2 0x012F # LATIN SMALL LETTER I WITH OGONEK
|
|
450
|
+
Iota HTMLsymbol 0x0399 # GREEK CAPITAL LETTER IOTA
|
|
451
|
+
iota ISOgrk3 0x03B9 # GREEK SMALL LETTER IOTA
|
|
452
|
+
iquest ISOnum 0x00BF # INVERTED QUESTION MARK
|
|
453
|
+
isin ISOtech 0x2208 # ELEMENT OF
|
|
454
|
+
Itilde ISOlat2 0x0128 # LATIN CAPITAL LETTER I WITH TILDE
|
|
455
|
+
itilde ISOlat2 0x0129 # LATIN SMALL LETTER I WITH TILDE
|
|
456
|
+
Iukcy ISOcyr2 0x0406 # CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I
|
|
457
|
+
iukcy ISOcyr2 0x0456 # CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I
|
|
458
|
+
Iuml ISOlat1 0x00CF # LATIN CAPITAL LETTER I WITH DIAERESIS
|
|
459
|
+
iuml ISOlat1 0x00EF # LATIN SMALL LETTER I WITH DIAERESIS
|
|
460
|
+
Jcirc ISOlat2 0x0134 # LATIN CAPITAL LETTER J WITH CIRCUMFLEX
|
|
461
|
+
jcirc ISOlat2 0x0135 # LATIN SMALL LETTER J WITH CIRCUMFLEX
|
|
462
|
+
Jcy ISOcyr1 0x0419 # CYRILLIC CAPITAL LETTER SHORT I
|
|
463
|
+
jcy ISOcyr1 0x0439 # CYRILLIC SMALL LETTER SHORT I
|
|
464
|
+
jnodot ISOamso 0x???? # latin small letter dotless j
|
|
465
|
+
Jsercy ISOcyr2 0x0408 # CYRILLIC CAPITAL LETTER JE
|
|
466
|
+
jsercy ISOcyr2 0x0458 # CYRILLIC SMALL LETTER JE
|
|
467
|
+
Jukcy ISOcyr2 0x0404 # CYRILLIC CAPITAL LETTER UKRAINIAN IE
|
|
468
|
+
jukcy ISOcyr2 0x0454 # CYRILLIC SMALL LETTER UKRAINIAN IE
|
|
469
|
+
Kappa HTMLsymbol 0x039A # GREEK CAPITAL LETTER KAPPA
|
|
470
|
+
kappa ISOgrk3 0x03BA # GREEK SMALL LETTER KAPPA
|
|
471
|
+
kappav ISOgrk3 0x03F0 # GREEK KAPPA SYMBOL
|
|
472
|
+
Kcedil ISOlat2 0x0136 # LATIN CAPITAL LETTER K WITH CEDILLA
|
|
473
|
+
kcedil ISOlat2 0x0137 # LATIN SMALL LETTER K WITH CEDILLA
|
|
474
|
+
Kcy ISOcyr1 0x041A # CYRILLIC CAPITAL LETTER KA
|
|
475
|
+
kcy ISOcyr1 0x043A # CYRILLIC SMALL LETTER KA
|
|
476
|
+
Kgr ISOgrk1 0x039A # GREEK CAPITAL LETTER KAPPA
|
|
477
|
+
kgr ISOgrk1 0x03BA # GREEK SMALL LETTER KAPPA
|
|
478
|
+
kgreen ISOlat2 0x0138 # LATIN SMALL LETTER KRA
|
|
479
|
+
KHcy ISOcyr1 0x0425 # CYRILLIC CAPITAL LETTER HA
|
|
480
|
+
khcy ISOcyr1 0x0445 # CYRILLIC SMALL LETTER HA
|
|
481
|
+
KHgr ISOgrk1 0x03A7 # GREEK CAPITAL LETTER CHI
|
|
482
|
+
khgr ISOgrk1 0x03C7 # GREEK SMALL LETTER CHI
|
|
483
|
+
KJcy ISOcyr2 0x040C # CYRILLIC CAPITAL LETTER KJE
|
|
484
|
+
kjcy ISOcyr2 0x045C # CYRILLIC SMALL LETTER KJE
|
|
485
|
+
lAarr ISOamsa 0x21DA # LEFTWARDS TRIPLE ARROW
|
|
486
|
+
Lacute ISOlat2 0x0139 # LATIN CAPITAL LETTER L WITH ACUTE
|
|
487
|
+
lacute ISOlat2 0x013A # LATIN SMALL LETTER L WITH ACUTE
|
|
488
|
+
lagran ISOtech 0x2112 # SCRIPT CAPITAL L
|
|
489
|
+
Lambda ISOgrk3 0x039B # GREEK CAPITAL LETTER LAMDA
|
|
490
|
+
lambda ISOgrk3 0x03BB # GREEK SMALL LETTER LAMDA
|
|
491
|
+
lang ISOtech 0x2329 # LEFT-POINTING ANGLE BRACKET
|
|
492
|
+
lap ISOamsr 0x???? # less-than, approximately equal to
|
|
493
|
+
laquo ISOnum 0x00AB # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
|
|
494
|
+
Larr ISOamsa 0x219E # LEFTWARDS TWO HEADED ARROW
|
|
495
|
+
larr ISOnum 0x2190 # LEFTWARDS ARROW
|
|
496
|
+
lArr ISOtech 0x21D0 # LEFTWARDS DOUBLE ARROW
|
|
497
|
+
larr2 ISOamsa 0x21C7 # LEFTWARDS PAIRED ARROWS
|
|
498
|
+
larrhk ISOamsa 0x21A9 # LEFTWARDS ARROW WITH HOOK
|
|
499
|
+
larrlp ISOamsa 0x21AB # LEFTWARDS ARROW WITH LOOP
|
|
500
|
+
larrtl ISOamsa 0x21A2 # LEFTWARDS ARROW WITH TAIL
|
|
501
|
+
Lcaron ISOlat2 0x013D # LATIN CAPITAL LETTER L WITH CARON
|
|
502
|
+
lcaron ISOlat2 0x013E # LATIN SMALL LETTER L WITH CARON
|
|
503
|
+
Lcedil ISOlat2 0x013B # LATIN CAPITAL LETTER L WITH CEDILLA
|
|
504
|
+
lcedil ISOlat2 0x013C # LATIN SMALL LETTER L WITH CEDILLA
|
|
505
|
+
lceil ISOamsc 0x2308 # LEFT CEILING
|
|
506
|
+
lcub ISOnum 0x007B # LEFT CURLY BRACKET
|
|
507
|
+
Lcy ISOcyr1 0x041B # CYRILLIC CAPITAL LETTER EL
|
|
508
|
+
lcy ISOcyr1 0x043B # CYRILLIC SMALL LETTER EL
|
|
509
|
+
ldot ISOamsr 0x22D6 # LESS-THAN WITH DOT
|
|
510
|
+
ldquo ISOnum 0x201C # LEFT DOUBLE QUOTATION MARK
|
|
511
|
+
ldquor ISOpub 0x201E # DOUBLE LOW-9 QUOTATION MARK
|
|
512
|
+
lE ISOamsr 0x2266 # LESS-THAN OVER EQUAL TO
|
|
513
|
+
le ISOtech 0x2264 # LESS-THAN OR EQUAL TO
|
|
514
|
+
lEg ISOamsr 0x???? # less-than, double equals, greater-than
|
|
515
|
+
leg ISOamsr 0x22DA # LESS-THAN EQUAL TO OR GREATER-THAN
|
|
516
|
+
les ISOamsr 0x2264 # LESS-THAN OR EQUAL TO
|
|
517
|
+
lfloor ISOamsc 0x230A # LEFT FLOOR
|
|
518
|
+
lg ISOamsr 0x2276 # LESS-THAN OR GREATER-THAN
|
|
519
|
+
Lgr ISOgrk1 0x039B # GREEK CAPITAL LETTER LAMDA
|
|
520
|
+
lgr ISOgrk1 0x03BB # GREEK SMALL LETTER LAMDA
|
|
521
|
+
lhard ISOamsa 0x21BD # LEFTWARDS HARPOON WITH BARB DOWNWARDS
|
|
522
|
+
lharu ISOamsa 0x21BC # LEFTWARDS HARPOON WITH BARB UPWARDS
|
|
523
|
+
lhblk ISOpub 0x2584 # LOWER HALF BLOCK
|
|
524
|
+
LJcy ISOcyr2 0x0409 # CYRILLIC CAPITAL LETTER LJE
|
|
525
|
+
ljcy ISOcyr2 0x0459 # CYRILLIC SMALL LETTER LJE
|
|
526
|
+
Ll ISOamsr 0x22D8 # VERY MUCH LESS-THAN
|
|
527
|
+
Lmidot ISOlat2 0x013F # LATIN CAPITAL LETTER L WITH MIDDLE DOT
|
|
528
|
+
lmidot ISOlat2 0x0140 # LATIN SMALL LETTER L WITH MIDDLE DOT
|
|
529
|
+
lnap ISOamsn 0x???? # less-than, not approximately equal to
|
|
530
|
+
lnE ISOamsn 0x2268 # LESS-THAN BUT NOT EQUAL TO
|
|
531
|
+
lne ISOamsn 0x2268 # LESS-THAN BUT NOT EQUAL TO
|
|
532
|
+
lnsim ISOamsn 0x22E6 # LESS-THAN BUT NOT EQUIVALENT TO
|
|
533
|
+
lowast ISOtech 0x2217 # ASTERISK OPERATOR
|
|
534
|
+
lowbar ISOnum 0x005F # LOW LINE
|
|
535
|
+
loz ISOpub 0x25CA # LOZENGE
|
|
536
|
+
loz ISOpub 0x2727 # WHITE FOUR POINTED STAR
|
|
537
|
+
lozf ISOpub 0x2726 # BLACK FOUR POINTED STAR
|
|
538
|
+
lpar ISOnum 0x0028 # LEFT PARENTHESIS
|
|
539
|
+
lpargt ISOamsc 0x???? # left parenthesis, greater-than
|
|
540
|
+
lrarr2 ISOamsa 0x21C6 # LEFTWARDS ARROW OVER RIGHTWARDS ARROW
|
|
541
|
+
lrhar2 ISOamsa 0x21CB # LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON
|
|
542
|
+
lrm HTMLspecial 0x200E # LEFT-TO-RIGHT MARK
|
|
543
|
+
lsaquo HTMLspecial 0x2039 # SINGLE LEFT-POINTING ANGLE QUOTATION MARK
|
|
544
|
+
lsh ISOamsa 0x21B0 # UPWARDS ARROW WITH TIP LEFTWARDS
|
|
545
|
+
lsim ISOamsr 0x2272 # LESS-THAN OR EQUIVALENT TO
|
|
546
|
+
lsqb ISOnum 0x005B # LEFT SQUARE BRACKET
|
|
547
|
+
lsquo ISOnum 0x2018 # LEFT SINGLE QUOTATION MARK
|
|
548
|
+
lsquor ISOpub 0x201A # SINGLE LOW-9 QUOTATION MARK
|
|
549
|
+
Lstrok ISOlat2 0x0141 # LATIN CAPITAL LETTER L WITH STROKE
|
|
550
|
+
lstrok ISOlat2 0x0142 # LATIN SMALL LETTER L WITH STROKE
|
|
551
|
+
Lt ISOamsr 0x226A # MUCH LESS-THAN
|
|
552
|
+
lt ISOnum 0x003C # LESS-THAN SIGN
|
|
553
|
+
lthree ISOamsb 0x22CB # LEFT SEMIDIRECT PRODUCT
|
|
554
|
+
ltimes ISOamsb 0x22C9 # LEFT NORMAL FACTOR SEMIDIRECT PRODUCT
|
|
555
|
+
ltri ISOpub 0x25C3 # WHITE LEFT-POINTING SMALL TRIANGLE
|
|
556
|
+
ltrie ISOamsr 0x22B4 # NORMAL SUBGROUP OF OR EQUAL TO
|
|
557
|
+
ltrif ISOpub 0x25C2 # BLACK LEFT-POINTING SMALL TRIANGLE
|
|
558
|
+
lvnE ISOamsn 0x2268 # LESS-THAN BUT NOT EQUAL TO
|
|
559
|
+
macr ISOdia 0x00AF # MACRON
|
|
560
|
+
male ISOpub 0x2642 # MALE SIGN
|
|
561
|
+
malt ISOpub 0x2720 # MALTESE CROSS
|
|
562
|
+
map ISOamsa 0x21A6 # RIGHTWARDS ARROW FROM BAR
|
|
563
|
+
marker ISOpub 0x25AE # BLACK VERTICAL RECTANGLE
|
|
564
|
+
Mcy ISOcyr1 0x041C # CYRILLIC CAPITAL LETTER EM
|
|
565
|
+
mcy ISOcyr1 0x043C # CYRILLIC SMALL LETTER EM
|
|
566
|
+
mdash ISOpub 0x2014 # EM DASH
|
|
567
|
+
Mgr ISOgrk1 0x039C # GREEK CAPITAL LETTER MU
|
|
568
|
+
mgr ISOgrk1 0x03BC # GREEK SMALL LETTER MU
|
|
569
|
+
micro ISOnum 0x00B5 # MICRO SIGN
|
|
570
|
+
mid ISOamsr 0x2223 # DIVIDES
|
|
571
|
+
middot ISOnum 0x00B7 # MIDDLE DOT
|
|
572
|
+
minus ISOtech 0x2212 # MINUS SIGN
|
|
573
|
+
minusb ISOamsb 0x229F # SQUARED MINUS
|
|
574
|
+
mldr ISOpub 0x2026 # HORIZONTAL ELLIPSIS
|
|
575
|
+
mnplus ISOtech 0x2213 # MINUS-OR-PLUS SIGN
|
|
576
|
+
models ISOamsr 0x22A7 # MODELS
|
|
577
|
+
Mu HTMLsymbol 0x039C # GREEK CAPITAL LETTER MU
|
|
578
|
+
mu ISOgrk3 0x03BC # GREEK SMALL LETTER MU
|
|
579
|
+
mumap ISOamsa 0x22B8 # MULTIMAP
|
|
580
|
+
nabla ISOtech 0x2207 # NABLA
|
|
581
|
+
Nacute ISOlat2 0x0143 # LATIN CAPITAL LETTER N WITH ACUTE
|
|
582
|
+
nacute ISOlat2 0x0144 # LATIN SMALL LETTER N WITH ACUTE
|
|
583
|
+
nap ISOamsn 0x2249 # NOT ALMOST EQUAL TO
|
|
584
|
+
napos ISOlat2 0x0149 # LATIN SMALL LETTER N PRECEDED BY APOSTROPHE
|
|
585
|
+
natur ISOpub 0x266E # MUSIC NATURAL SIGN
|
|
586
|
+
nbsp ISOnum 0x00A0 # NO-BREAK SPACE
|
|
587
|
+
Ncaron ISOlat2 0x0147 # LATIN CAPITAL LETTER N WITH CARON
|
|
588
|
+
ncaron ISOlat2 0x0148 # LATIN SMALL LETTER N WITH CARON
|
|
589
|
+
Ncedil ISOlat2 0x0145 # LATIN CAPITAL LETTER N WITH CEDILLA
|
|
590
|
+
ncedil ISOlat2 0x0146 # LATIN SMALL LETTER N WITH CEDILLA
|
|
591
|
+
ncong ISOamsn 0x2247 # NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO
|
|
592
|
+
Ncy ISOcyr1 0x041D # CYRILLIC CAPITAL LETTER EN
|
|
593
|
+
ncy ISOcyr1 0x043D # CYRILLIC SMALL LETTER EN
|
|
594
|
+
ndash ISOpub 0x2013 # EN DASH
|
|
595
|
+
ne ISOtech 0x2260 # NOT EQUAL TO
|
|
596
|
+
nearr ISOamsa 0x2197 # NORTH EAST ARROW
|
|
597
|
+
nequiv ISOamsn 0x2262 # NOT IDENTICAL TO
|
|
598
|
+
nexist ISOamso 0x2204 # THERE DOES NOT EXIST
|
|
599
|
+
ngE ISOamsn 0x???? # not greater-than, double equals
|
|
600
|
+
nge ISOamsn 0x2271 # NEITHER GREATER-THAN NOR EQUAL TO
|
|
601
|
+
nges ISOamsn 0x2271 # NEITHER GREATER-THAN NOR EQUAL TO
|
|
602
|
+
Ngr ISOgrk1 0x039D # GREEK CAPITAL LETTER NU
|
|
603
|
+
ngr ISOgrk1 0x03BD # GREEK SMALL LETTER NU
|
|
604
|
+
ngt ISOamsn 0x226F # NOT GREATER-THAN
|
|
605
|
+
nharr ISOamsa 0x21AE # LEFT RIGHT ARROW WITH STROKE
|
|
606
|
+
nhArr ISOamsa 0x21CE # LEFT RIGHT DOUBLE ARROW WITH STROKE
|
|
607
|
+
ni ISOtech 0x220B # CONTAINS AS MEMBER
|
|
608
|
+
NJcy ISOcyr2 0x040A # CYRILLIC CAPITAL LETTER NJE
|
|
609
|
+
njcy ISOcyr2 0x045A # CYRILLIC SMALL LETTER NJE
|
|
610
|
+
nlarr ISOamsa 0x219A # LEFTWARDS ARROW WITH STROKE
|
|
611
|
+
nlArr ISOamsa 0x21CD # LEFTWARDS DOUBLE ARROW WITH STROKE
|
|
612
|
+
nldr ISOpub 0x2025 # TWO DOT LEADER
|
|
613
|
+
nlE ISOamsn 0x???? # not less-than, double equals
|
|
614
|
+
nle ISOamsn 0x2270 # NEITHER LESS-THAN NOR EQUAL TO
|
|
615
|
+
nles ISOamsn 0x2270 # NEITHER LESS-THAN NOR EQUAL TO
|
|
616
|
+
nlt ISOamsn 0x226E # NOT LESS-THAN
|
|
617
|
+
nltri ISOamsn 0x22EA # NOT NORMAL SUBGROUP OF
|
|
618
|
+
nltrie ISOamsn 0x22EC # NOT NORMAL SUBGROUP OF OR EQUAL TO
|
|
619
|
+
nmid ISOamsn 0x2224 # DOES NOT DIVIDE
|
|
620
|
+
not ISOnum 0x00AC # NOT SIGN
|
|
621
|
+
notin ISOtech 0x2209 # NOT AN ELEMENT OF
|
|
622
|
+
npar ISOamsn 0x2226 # NOT PARALLEL TO
|
|
623
|
+
npr ISOamsn 0x2280 # DOES NOT PRECEDE
|
|
624
|
+
npre ISOamsn 0x22E0 # DOES NOT PRECEDE OR EQUAL
|
|
625
|
+
nrarr ISOamsa 0x219B # RIGHTWARDS ARROW WITH STROKE
|
|
626
|
+
nrArr ISOamsa 0x21CF # RIGHTWARDS DOUBLE ARROW WITH STROKE
|
|
627
|
+
nrtri ISOamsn 0x22EB # DOES NOT CONTAIN AS NORMAL SUBGROUP
|
|
628
|
+
nrtrie ISOamsn 0x22ED # DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL
|
|
629
|
+
nsc ISOamsn 0x2281 # DOES NOT SUCCEED
|
|
630
|
+
nsce ISOamsn 0x22E1 # DOES NOT SUCCEED OR EQUAL
|
|
631
|
+
nsim ISOamsn 0x2241 # NOT TILDE
|
|
632
|
+
nsime ISOamsn 0x2244 # NOT ASYMPTOTICALLY EQUAL TO
|
|
633
|
+
nsmid ISOamsn 0x???? # nshortmid
|
|
634
|
+
nspar ISOamsn 0x2226 # NOT PARALLEL TO
|
|
635
|
+
nsub ISOamsn 0x2284 # NOT A SUBSET OF
|
|
636
|
+
nsubE ISOamsn 0x2288 # NEITHER A SUBSET OF NOR EQUAL TO
|
|
637
|
+
nsube ISOamsn 0x2288 # NEITHER A SUBSET OF NOR EQUAL TO
|
|
638
|
+
nsup ISOamsn 0x2285 # NOT A SUPERSET OF
|
|
639
|
+
nsupE ISOamsn 0x2289 # NEITHER A SUPERSET OF NOR EQUAL TO
|
|
640
|
+
nsupe ISOamsn 0x2289 # NEITHER A SUPERSET OF NOR EQUAL TO
|
|
641
|
+
Ntilde ISOlat1 0x00D1 # LATIN CAPITAL LETTER N WITH TILDE
|
|
642
|
+
ntilde ISOlat1 0x00F1 # LATIN SMALL LETTER N WITH TILDE
|
|
643
|
+
Nu HTMLsymbol 0x039D # GREEK CAPITAL LETTER NU
|
|
644
|
+
nu ISOgrk3 0x03BD # GREEK SMALL LETTER NU
|
|
645
|
+
num ISOnum 0x0023 # NUMBER SIGN
|
|
646
|
+
numero ISOcyr1 0x2116 # NUMERO SIGN
|
|
647
|
+
numsp ISOpub 0x2007 # FIGURE SPACE
|
|
648
|
+
nvdash ISOamsn 0x22AC # DOES NOT PROVE
|
|
649
|
+
nvDash ISOamsn 0x22AD # NOT TRUE
|
|
650
|
+
nVdash ISOamsn 0x22AE # DOES NOT FORCE
|
|
651
|
+
nVDash ISOamsn 0x22AF # NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT
|
|
652
|
+
TURNSTILE
|
|
653
|
+
nwarr ISOamsa 0x2196 # NORTH WEST ARROW
|
|
654
|
+
Oacgr ISOgrk2 0x038C # GREEK CAPITAL LETTER OMICRON WITH TONOS
|
|
655
|
+
oacgr ISOgrk2 0x03CC # GREEK SMALL LETTER OMICRON WITH TONOS
|
|
656
|
+
Oacute ISOlat1 0x00D3 # LATIN CAPITAL LETTER O WITH ACUTE
|
|
657
|
+
oacute ISOlat1 0x00F3 # LATIN SMALL LETTER O WITH ACUTE
|
|
658
|
+
oast ISOamsb 0x229B # CIRCLED ASTERISK OPERATOR
|
|
659
|
+
ocir ISOamsb 0x229A # CIRCLED RING OPERATOR
|
|
660
|
+
Ocirc ISOlat1 0x00D4 # LATIN CAPITAL LETTER O WITH CIRCUMFLEX
|
|
661
|
+
ocirc ISOlat1 0x00F4 # LATIN SMALL LETTER O WITH CIRCUMFLEX
|
|
662
|
+
Ocy ISOcyr1 0x041E # CYRILLIC CAPITAL LETTER O
|
|
663
|
+
ocy ISOcyr1 0x043E # CYRILLIC SMALL LETTER O
|
|
664
|
+
odash ISOamsb 0x229D # CIRCLED DASH
|
|
665
|
+
Odblac ISOlat2 0x0150 # LATIN CAPITAL LETTER O WITH DOUBLE ACUTE
|
|
666
|
+
odblac ISOlat2 0x0151 # LATIN SMALL LETTER O WITH DOUBLE ACUTE
|
|
667
|
+
odot ISOamsb 0x2299 # CIRCLED DOT OPERATOR
|
|
668
|
+
OElig ISOlat2 0x0152 # LATIN CAPITAL LIGATURE OE
|
|
669
|
+
oelig ISOlat2 0x0153 # LATIN SMALL LIGATURE OE
|
|
670
|
+
ogon ISOdia 0x02DB # OGONEK
|
|
671
|
+
Ogr ISOgrk1 0x039F # GREEK CAPITAL LETTER OMICRON
|
|
672
|
+
ogr ISOgrk1 0x03BF # GREEK SMALL LETTER OMICRON
|
|
673
|
+
Ograve ISOlat1 0x00D2 # LATIN CAPITAL LETTER O WITH GRAVE
|
|
674
|
+
ograve ISOlat1 0x00F2 # LATIN SMALL LETTER O WITH GRAVE
|
|
675
|
+
OHacgr ISOgrk2 0x038F # GREEK CAPITAL LETTER OMEGA WITH TONOS
|
|
676
|
+
ohacgr ISOgrk2 0x03CE # GREEK SMALL LETTER OMEGA WITH TONOS
|
|
677
|
+
OHgr ISOgrk1 0x03A9 # GREEK CAPITAL LETTER OMEGA
|
|
678
|
+
ohgr ISOgrk1 0x03C9 # GREEK SMALL LETTER OMEGA
|
|
679
|
+
ohm ISOnum 0x2126 # OHM SIGN
|
|
680
|
+
olarr ISOamsa 0x21BA # ANTICLOCKWISE OPEN CIRCLE ARROW
|
|
681
|
+
oline HTMLsymbol 0x203E # OVERLINE
|
|
682
|
+
Omacr ISOlat2 0x014C # LATIN CAPITAL LETTER O WITH MACRON
|
|
683
|
+
omacr ISOlat2 0x014D # LATIN SMALL LETTER O WITH MACRON
|
|
684
|
+
Omega ISOgrk3 0x03A9 # GREEK CAPITAL LETTER OMEGA
|
|
685
|
+
omega ISOgrk3 0x03C9 # GREEK SMALL LETTER OMEGA
|
|
686
|
+
Omicron HTMLsymbol 0x039F # GREEK CAPITAL LETTER OMICRON
|
|
687
|
+
omicron HTMLsymbol 0x03BF # GREEK SMALL LETTER OMICRON
|
|
688
|
+
ominus ISOamsb 0x2296 # CIRCLED MINUS
|
|
689
|
+
oplus ISOamsb 0x2295 # CIRCLED PLUS
|
|
690
|
+
or ISOtech 0x2228 # LOGICAL OR
|
|
691
|
+
orarr ISOamsa 0x21BB # CLOCKWISE OPEN CIRCLE ARROW
|
|
692
|
+
order ISOtech 0x2134 # SCRIPT SMALL O
|
|
693
|
+
ordf ISOnum 0x00AA # FEMININE ORDINAL INDICATOR
|
|
694
|
+
ordm ISOnum 0x00BA # MASCULINE ORDINAL INDICATOR
|
|
695
|
+
oS ISOamso 0x24C8 # CIRCLED LATIN CAPITAL LETTER S
|
|
696
|
+
Oslash ISOlat1 0x00D8 # LATIN CAPITAL LETTER O WITH STROKE
|
|
697
|
+
oslash ISOlat1 0x00F8 # LATIN SMALL LETTER O WITH STROKE
|
|
698
|
+
osol ISOamsb 0x2298 # CIRCLED DIVISION SLASH
|
|
699
|
+
Otilde ISOlat1 0x00D5 # LATIN CAPITAL LETTER O WITH TILDE
|
|
700
|
+
otilde ISOlat1 0x00F5 # LATIN SMALL LETTER O WITH TILDE
|
|
701
|
+
otimes ISOamsb 0x2297 # CIRCLED TIMES
|
|
702
|
+
Ouml ISOlat1 0x00D6 # LATIN CAPITAL LETTER O WITH DIAERESIS
|
|
703
|
+
ouml ISOlat1 0x00F6 # LATIN SMALL LETTER O WITH DIAERESIS
|
|
704
|
+
par ISOtech 0x2225 # PARALLEL TO
|
|
705
|
+
para ISOnum 0x00B6 # PILCROW SIGN
|
|
706
|
+
part ISOtech 0x2202 # PARTIAL DIFFERENTIAL
|
|
707
|
+
Pcy ISOcyr1 0x041F # CYRILLIC CAPITAL LETTER PE
|
|
708
|
+
pcy ISOcyr1 0x043F # CYRILLIC SMALL LETTER PE
|
|
709
|
+
percnt ISOnum 0x0025 # PERCENT SIGN
|
|
710
|
+
period ISOnum 0x002E # FULL STOP
|
|
711
|
+
permil ISOtech 0x2030 # PER MILLE SIGN
|
|
712
|
+
perp ISOtech 0x22A5 # UP TACK
|
|
713
|
+
Pgr ISOgrk1 0x03A0 # GREEK CAPITAL LETTER PI
|
|
714
|
+
pgr ISOgrk1 0x03C0 # GREEK SMALL LETTER PI
|
|
715
|
+
PHgr ISOgrk1 0x03A6 # GREEK CAPITAL LETTER PHI
|
|
716
|
+
phgr ISOgrk1 0x03C6 # GREEK SMALL LETTER PHI
|
|
717
|
+
phi HTMLsymbol 0x03C6 # GREEK SMALL LETTER PHI
|
|
718
|
+
Phi ISOgrk3 0x03A6 # GREEK CAPITAL LETTER PHI
|
|
719
|
+
phis ISOgrk3 0x03C6 # GREEK SMALL LETTER PHI
|
|
720
|
+
phiv ISOgrk3 0x03D5 # GREEK PHI SYMBOL
|
|
721
|
+
phmmat ISOtech 0x2133 # SCRIPT CAPITAL M
|
|
722
|
+
phone ISOpub 0x260E # BLACK TELEPHONE
|
|
723
|
+
Pi ISOgrk3 0x03A0 # GREEK CAPITAL LETTER PI
|
|
724
|
+
pi ISOgrk3 0x03C0 # GREEK SMALL LETTER PI
|
|
725
|
+
piv ISOgrk3 0x03D6 # GREEK PI SYMBOL
|
|
726
|
+
planck ISOamso 0x210F # PLANCK CONSTANT OVER TWO PI
|
|
727
|
+
plus ISOnum 0x002B # PLUS SIGN
|
|
728
|
+
plusb ISOamsb 0x229E # SQUARED PLUS
|
|
729
|
+
plusdo ISOamsb 0x2214 # DOT PLUS
|
|
730
|
+
plusmn ISOnum 0x00B1 # PLUS-MINUS SIGN
|
|
731
|
+
pound ISOnum 0x00A3 # POUND SIGN
|
|
732
|
+
pr ISOamsr 0x227A # PRECEDES
|
|
733
|
+
prap ISOamsr 0x???? # precedes, approximately equal to
|
|
734
|
+
pre ISOamsr 0x227C # PRECEDES OR EQUAL TO
|
|
735
|
+
prime ISOtech 0x2032 # PRIME
|
|
736
|
+
Prime ISOtech 0x2033 # DOUBLE PRIME
|
|
737
|
+
prnap ISOamsn 0x???? # precedes, not approximately equal to
|
|
738
|
+
prnE ISOamsn 0x???? # precedes, not double equal
|
|
739
|
+
prnsim ISOamsn 0x22E8 # PRECEDES BUT NOT EQUIVALENT TO
|
|
740
|
+
prod ISOamsb 0x220F # N-ARY PRODUCT
|
|
741
|
+
prop ISOtech 0x221D # PROPORTIONAL TO
|
|
742
|
+
prsim ISOamsr 0x227E # PRECEDES OR EQUIVALENT TO
|
|
743
|
+
PSgr ISOgrk1 0x03A8 # GREEK CAPITAL LETTER PSI
|
|
744
|
+
psgr ISOgrk1 0x03C8 # GREEK SMALL LETTER PSI
|
|
745
|
+
Psi ISOgrk3 0x03A8 # GREEK CAPITAL LETTER PSI
|
|
746
|
+
psi ISOgrk3 0x03C8 # GREEK SMALL LETTER PSI
|
|
747
|
+
puncsp ISOpub 0x2008 # PUNCTUATION SPACE
|
|
748
|
+
quest ISOnum 0x003F # QUESTION MARK
|
|
749
|
+
quot ISOnum 0x0022 # QUOTATION MARK
|
|
750
|
+
rAarr ISOamsa 0x21DB # RIGHTWARDS TRIPLE ARROW
|
|
751
|
+
Racute ISOlat2 0x0154 # LATIN CAPITAL LETTER R WITH ACUTE
|
|
752
|
+
racute ISOlat2 0x0155 # LATIN SMALL LETTER R WITH ACUTE
|
|
753
|
+
radic ISOtech 0x221A # SQUARE ROOT
|
|
754
|
+
rang ISOtech 0x232A # RIGHT-POINTING ANGLE BRACKET
|
|
755
|
+
raquo ISOnum 0x00BB # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
|
|
756
|
+
Rarr ISOamsa 0x21A0 # RIGHTWARDS TWO HEADED ARROW
|
|
757
|
+
rarr ISOnum 0x2192 # RIGHTWARDS ARROW
|
|
758
|
+
rArr ISOtech 0x21D2 # RIGHTWARDS DOUBLE ARROW
|
|
759
|
+
rarr2 ISOamsa 0x21C9 # RIGHTWARDS PAIRED ARROWS
|
|
760
|
+
rarrhk ISOamsa 0x21AA # RIGHTWARDS ARROW WITH HOOK
|
|
761
|
+
rarrlp ISOamsa 0x21AC # RIGHTWARDS ARROW WITH LOOP
|
|
762
|
+
rarrtl ISOamsa 0x21A3 # RIGHTWARDS ARROW WITH TAIL
|
|
763
|
+
rarrw ISOamsa 0x219D # RIGHTWARDS WAVE ARROW
|
|
764
|
+
Rcaron ISOlat2 0x0158 # LATIN CAPITAL LETTER R WITH CARON
|
|
765
|
+
rcaron ISOlat2 0x0159 # LATIN SMALL LETTER R WITH CARON
|
|
766
|
+
Rcedil ISOlat2 0x0156 # LATIN CAPITAL LETTER R WITH CEDILLA
|
|
767
|
+
rcedil ISOlat2 0x0157 # LATIN SMALL LETTER R WITH CEDILLA
|
|
768
|
+
rceil ISOamsc 0x2309 # RIGHT CEILING
|
|
769
|
+
rcub ISOnum 0x007D # RIGHT CURLY BRACKET
|
|
770
|
+
Rcy ISOcyr1 0x0420 # CYRILLIC CAPITAL LETTER ER
|
|
771
|
+
rcy ISOcyr1 0x0440 # CYRILLIC SMALL LETTER ER
|
|
772
|
+
rdquo ISOnum 0x201D # RIGHT DOUBLE QUOTATION MARK
|
|
773
|
+
rdquor ISOpub 0x201C # LEFT DOUBLE QUOTATION MARK
|
|
774
|
+
real ISOamso 0x211C # BLACK-LETTER CAPITAL R
|
|
775
|
+
rect ISOpub 0x25AD # WHITE RECTANGLE
|
|
776
|
+
reg ISOnum 0x00AE # REGISTERED SIGN
|
|
777
|
+
rfloor ISOamsc 0x230B # RIGHT FLOOR
|
|
778
|
+
Rgr ISOgrk1 0x03A1 # GREEK CAPITAL LETTER RHO
|
|
779
|
+
rgr ISOgrk1 0x03C1 # GREEK SMALL LETTER RHO
|
|
780
|
+
rhard ISOamsa 0x21C1 # RIGHTWARDS HARPOON WITH BARB DOWNWARDS
|
|
781
|
+
rharu ISOamsa 0x21C0 # RIGHTWARDS HARPOON WITH BARB UPWARDS
|
|
782
|
+
Rho HTMLsymbol 0x03A1 # GREEK CAPITAL LETTER RHO
|
|
783
|
+
rho ISOgrk3 0x03C1 # GREEK SMALL LETTER RHO
|
|
784
|
+
rhov ISOgrk3 0x03F1 # GREEK RHO SYMBOL
|
|
785
|
+
ring ISOdia 0x02DA # RING ABOVE
|
|
786
|
+
rlarr2 ISOamsa 0x21C4 # RIGHTWARDS ARROW OVER LEFTWARDS ARROW
|
|
787
|
+
rlhar2 ISOamsa 0x21CC # RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON
|
|
788
|
+
rlm HTMLspecial 0x200F # RIGHT-TO-LEFT MARK
|
|
789
|
+
rpar ISOnum 0x0029 # RIGHT PARENTHESIS
|
|
790
|
+
rpargt ISOamsc 0x???? # right parenthesis, greater-than
|
|
791
|
+
rsaquo HTMLspecial 0x203A # SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
|
|
792
|
+
rsh ISOamsa 0x21B1 # UPWARDS ARROW WITH TIP RIGHTWARDS
|
|
793
|
+
rsqb ISOnum 0x005D # RIGHT SQUARE BRACKET
|
|
794
|
+
rsquo ISOnum 0x2019 # RIGHT SINGLE QUOTATION MARK
|
|
795
|
+
rsquor ISOpub 0x2018 # LEFT SINGLE QUOTATION MARK
|
|
796
|
+
rthree ISOamsb 0x22CC # RIGHT SEMIDIRECT PRODUCT
|
|
797
|
+
rtimes ISOamsb 0x22CA # RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT
|
|
798
|
+
rtri ISOpub 0x25B9 # WHITE RIGHT-POINTING SMALL TRIANGLE
|
|
799
|
+
rtrie ISOamsr 0x22B5 # CONTAINS AS NORMAL SUBGROUP OR EQUAL TO
|
|
800
|
+
rtrif ISOpub 0x25B8 # BLACK RIGHT-POINTING SMALL TRIANGLE
|
|
801
|
+
rx ISOpub 0x211E # PRESCRIPTION TAKE
|
|
802
|
+
Sacute ISOlat2 0x015A # LATIN CAPITAL LETTER S WITH ACUTE
|
|
803
|
+
sacute ISOlat2 0x015B # LATIN SMALL LETTER S WITH ACUTE
|
|
804
|
+
samalg ISOamsr 0x2210 # N-ARY COPRODUCT
|
|
805
|
+
sbquo HTMLspecial 0x201A # SINGLE LOW-9 QUOTATION MARK
|
|
806
|
+
sbsol ISOamso 0x005C # REVERSE SOLIDUS
|
|
807
|
+
sc ISOamsr 0x227B # SUCCEEDS
|
|
808
|
+
scap ISOamsr 0x???? # succeeds, approximately equal to
|
|
809
|
+
Scaron ISOlat2 0x0160 # LATIN CAPITAL LETTER S WITH CARON
|
|
810
|
+
scaron ISOlat2 0x0161 # LATIN SMALL LETTER S WITH CARON
|
|
811
|
+
sccue ISOamsr 0x227D # SUCCEEDS OR EQUAL TO
|
|
812
|
+
sce ISOamsr 0x227D # SUCCEEDS OR EQUAL TO
|
|
813
|
+
Scedil ISOlat2 0x015E # LATIN CAPITAL LETTER S WITH CEDILLA
|
|
814
|
+
scedil ISOlat2 0x015F # LATIN SMALL LETTER S WITH CEDILLA
|
|
815
|
+
Scirc ISOlat2 0x015C # LATIN CAPITAL LETTER S WITH CIRCUMFLEX
|
|
816
|
+
scirc ISOlat2 0x015D # LATIN SMALL LETTER S WITH CIRCUMFLEX
|
|
817
|
+
scnap ISOamsn 0x???? # succeeds, not approximately equal to
|
|
818
|
+
scnE ISOamsn 0x???? # succeeds, not double equals
|
|
819
|
+
scnsim ISOamsn 0x22E9 # SUCCEEDS BUT NOT EQUIVALENT TO
|
|
820
|
+
scsim ISOamsr 0x227F # SUCCEEDS OR EQUIVALENT TO
|
|
821
|
+
Scy ISOcyr1 0x0421 # CYRILLIC CAPITAL LETTER ES
|
|
822
|
+
scy ISOcyr1 0x0441 # CYRILLIC SMALL LETTER ES
|
|
823
|
+
sdot ISOamsb 0x22C5 # DOT OPERATOR
|
|
824
|
+
sdotb ISOamsb 0x22A1 # SQUARED DOT OPERATOR
|
|
825
|
+
sect ISOnum 0x00A7 # SECTION SIGN
|
|
826
|
+
semi ISOnum 0x003B # SEMICOLON
|
|
827
|
+
setmn ISOamsb 0x2216 # SET MINUS
|
|
828
|
+
sext ISOpub 0x2736 # SIX POINTED BLACK STAR
|
|
829
|
+
sfgr ISOgrk1 0x03C2 # GREEK SMALL LETTER FINAL SIGMA
|
|
830
|
+
sfrown ISOamsr 0x2322 # FROWN
|
|
831
|
+
Sgr ISOgrk1 0x03A3 # GREEK CAPITAL LETTER SIGMA
|
|
832
|
+
sgr ISOgrk1 0x03C3 # GREEK SMALL LETTER SIGMA
|
|
833
|
+
sharp ISOpub 0x266F # MUSIC SHARP SIGN
|
|
834
|
+
SHCHcy ISOcyr1 0x0429 # CYRILLIC CAPITAL LETTER SHCHA
|
|
835
|
+
shchcy ISOcyr1 0x0449 # CYRILLIC SMALL LETTER SHCHA
|
|
836
|
+
SHcy ISOcyr1 0x0428 # CYRILLIC CAPITAL LETTER SHA
|
|
837
|
+
shcy ISOcyr1 0x0448 # CYRILLIC SMALL LETTER SHA
|
|
838
|
+
shy ISOnum 0x00AD # SOFT HYPHEN
|
|
839
|
+
Sigma ISOgrk3 0x03A3 # GREEK CAPITAL LETTER SIGMA
|
|
840
|
+
sigma ISOgrk3 0x03C3 # GREEK SMALL LETTER SIGMA
|
|
841
|
+
sigmaf HTMLsymbol 0x03C2 # GREEK SMALL LETTER FINAL SIGMA
|
|
842
|
+
sigmav ISOgrk3 0x03C2 # GREEK SMALL LETTER FINAL SIGMA
|
|
843
|
+
sim ISOtech 0x223C # TILDE OPERATOR
|
|
844
|
+
sime ISOtech 0x2243 # ASYMPTOTICALLY EQUAL TO
|
|
845
|
+
smid ISOamsr 0x???? # shortmid
|
|
846
|
+
smile ISOamsr 0x2323 # SMILE
|
|
847
|
+
SOFTcy ISOcyr1 0x042C # CYRILLIC CAPITAL LETTER SOFT SIGN
|
|
848
|
+
softcy ISOcyr1 0x044C # CYRILLIC SMALL LETTER SOFT SIGN
|
|
849
|
+
sol ISOnum 0x002F # SOLIDUS
|
|
850
|
+
spades ISOpub 0x2660 # BLACK SPADE SUIT
|
|
851
|
+
spar ISOamsr 0x2225 # PARALLEL TO
|
|
852
|
+
sqcap ISOamsb 0x2293 # SQUARE CAP
|
|
853
|
+
sqcup ISOamsb 0x2294 # SQUARE CUP
|
|
854
|
+
sqsub ISOamsr 0x228F # SQUARE IMAGE OF
|
|
855
|
+
sqsube ISOamsr 0x2291 # SQUARE IMAGE OF OR EQUAL TO
|
|
856
|
+
sqsup ISOamsr 0x2290 # SQUARE ORIGINAL OF
|
|
857
|
+
sqsupe ISOamsr 0x2292 # SQUARE ORIGINAL OF OR EQUAL TO
|
|
858
|
+
squ ISOpub 0x25A1 # WHITE SQUARE
|
|
859
|
+
square ISOtech 0x25A1 # WHITE SQUARE
|
|
860
|
+
squf ISOpub 0x25AA # BLACK SMALL SQUARE
|
|
861
|
+
ssetmn ISOamsb 0x2216 # SET MINUS
|
|
862
|
+
ssmile ISOamsr 0x2323 # SMILE
|
|
863
|
+
sstarf ISOamsb 0x22C6 # STAR OPERATOR
|
|
864
|
+
star ISOpub 0x2606 # WHITE STAR
|
|
865
|
+
starf ISOpub 0x2605 # BLACK STAR
|
|
866
|
+
Sub ISOamsr 0x22D0 # DOUBLE SUBSET
|
|
867
|
+
sub ISOtech 0x2282 # SUBSET OF
|
|
868
|
+
subE ISOamsr 0x2286 # SUBSET OF OR EQUAL TO
|
|
869
|
+
sube ISOtech 0x2286 # SUBSET OF OR EQUAL TO
|
|
870
|
+
subnE ISOamsn 0x228A # SUBSET OF WITH NOT EQUAL TO
|
|
871
|
+
subne ISOamsn 0x228A # SUBSET OF WITH NOT EQUAL TO
|
|
872
|
+
sum ISOamsb 0x2211 # N-ARY SUMMATION
|
|
873
|
+
sung ISOnum 0x266A # EIGHTH NOTE
|
|
874
|
+
Sup ISOamsr 0x22D1 # DOUBLE SUPERSET
|
|
875
|
+
sup ISOtech 0x2283 # SUPERSET OF
|
|
876
|
+
sup1 ISOnum 0x00B9 # SUPERSCRIPT ONE
|
|
877
|
+
sup2 ISOnum 0x00B2 # SUPERSCRIPT TWO
|
|
878
|
+
sup3 ISOnum 0x00B3 # SUPERSCRIPT THREE
|
|
879
|
+
supE ISOamsr 0x2287 # SUPERSET OF OR EQUAL TO
|
|
880
|
+
supe ISOtech 0x2287 # SUPERSET OF OR EQUAL TO
|
|
881
|
+
supnE ISOamsn 0x228B # SUPERSET OF WITH NOT EQUAL TO
|
|
882
|
+
supne ISOamsn 0x228B # SUPERSET OF WITH NOT EQUAL TO
|
|
883
|
+
szlig ISOlat1 0x00DF # LATIN SMALL LETTER SHARP S
|
|
884
|
+
target ISOpub 0x2316 # POSITION INDICATOR
|
|
885
|
+
Tau HTMLsymbol 0x03A4 # GREEK CAPITAL LETTER TAU
|
|
886
|
+
tau ISOgrk3 0x03C4 # GREEK SMALL LETTER TAU
|
|
887
|
+
Tcaron ISOlat2 0x0164 # LATIN CAPITAL LETTER T WITH CARON
|
|
888
|
+
tcaron ISOlat2 0x0165 # LATIN SMALL LETTER T WITH CARON
|
|
889
|
+
Tcedil ISOlat2 0x0162 # LATIN CAPITAL LETTER T WITH CEDILLA
|
|
890
|
+
tcedil ISOlat2 0x0163 # LATIN SMALL LETTER T WITH CEDILLA
|
|
891
|
+
Tcy ISOcyr1 0x0422 # CYRILLIC CAPITAL LETTER TE
|
|
892
|
+
tcy ISOcyr1 0x0442 # CYRILLIC SMALL LETTER TE
|
|
893
|
+
tdot ISOtech 0x20DB # COMBINING THREE DOTS ABOVE
|
|
894
|
+
telrec ISOpub 0x2315 # TELEPHONE RECORDER
|
|
895
|
+
Tgr ISOgrk1 0x03A4 # GREEK CAPITAL LETTER TAU
|
|
896
|
+
tgr ISOgrk1 0x03C4 # GREEK SMALL LETTER TAU
|
|
897
|
+
there4 ISOtech 0x2234 # THEREFORE
|
|
898
|
+
theta HTMLsymbol 0x03B8 # GREEK SMALL LETTER THETA
|
|
899
|
+
Theta ISOgrk3 0x0398 # GREEK CAPITAL LETTER THETA
|
|
900
|
+
thetas ISOgrk3 0x03B8 # GREEK SMALL LETTER THETA
|
|
901
|
+
thetasym HTMLsymbol 0x03D1 # GREEK THETA SYMBOL
|
|
902
|
+
thetav ISOgrk3 0x03D1 # GREEK THETA SYMBOL
|
|
903
|
+
THgr ISOgrk1 0x0398 # GREEK CAPITAL LETTER THETA
|
|
904
|
+
thgr ISOgrk1 0x03B8 # GREEK SMALL LETTER THETA
|
|
905
|
+
thinsp ISOpub 0x2009 # THIN SPACE
|
|
906
|
+
thkap ISOamsr 0x2248 # ALMOST EQUAL TO
|
|
907
|
+
thksim ISOamsr 0x223C # TILDE OPERATOR
|
|
908
|
+
THORN ISOlat1 0x00DE # LATIN CAPITAL LETTER THORN
|
|
909
|
+
thorn ISOlat1 0x00FE # LATIN SMALL LETTER THORN
|
|
910
|
+
tilde ISOdia 0x02DC # SMALL TILDE
|
|
911
|
+
times ISOnum 0x00D7 # MULTIPLICATION SIGN
|
|
912
|
+
timesb ISOamsb 0x22A0 # SQUARED TIMES
|
|
913
|
+
top ISOamsb 0x22A4 # DOWN TACK
|
|
914
|
+
tprime ISOtech 0x2034 # TRIPLE PRIME
|
|
915
|
+
trade ISOnum 0x2122 # TRADE MARK SIGN
|
|
916
|
+
trie ISOamsr 0x225C # DELTA EQUAL TO
|
|
917
|
+
TScy ISOcyr1 0x0426 # CYRILLIC CAPITAL LETTER TSE
|
|
918
|
+
tscy ISOcyr1 0x0446 # CYRILLIC SMALL LETTER TSE
|
|
919
|
+
TSHcy ISOcyr2 0x040B # CYRILLIC CAPITAL LETTER TSHE
|
|
920
|
+
tshcy ISOcyr2 0x045B # CYRILLIC SMALL LETTER TSHE
|
|
921
|
+
Tstrok ISOlat2 0x0166 # LATIN CAPITAL LETTER T WITH STROKE
|
|
922
|
+
tstrok ISOlat2 0x0167 # LATIN SMALL LETTER T WITH STROKE
|
|
923
|
+
twixt ISOamsr 0x226C # BETWEEN
|
|
924
|
+
Uacgr ISOgrk2 0x038E # GREEK CAPITAL LETTER UPSILON WITH TONOS
|
|
925
|
+
uacgr ISOgrk2 0x03CD # GREEK SMALL LETTER UPSILON WITH TONOS
|
|
926
|
+
Uacute ISOlat1 0x00DA # LATIN CAPITAL LETTER U WITH ACUTE
|
|
927
|
+
uacute ISOlat1 0x00FA # LATIN SMALL LETTER U WITH ACUTE
|
|
928
|
+
uArr ISOamsa 0x21D1 # UPWARDS DOUBLE ARROW
|
|
929
|
+
uarr ISOnum 0x2191 # UPWARDS ARROW
|
|
930
|
+
uarr2 ISOamsa 0x21C8 # UPWARDS PAIRED ARROWS
|
|
931
|
+
Ubrcy ISOcyr2 0x040E # CYRILLIC CAPITAL LETTER SHORT U
|
|
932
|
+
ubrcy ISOcyr2 0x045E # CYRILLIC SMALL LETTER SHORT U
|
|
933
|
+
Ubreve ISOlat2 0x016C # LATIN CAPITAL LETTER U WITH BREVE
|
|
934
|
+
ubreve ISOlat2 0x016D # LATIN SMALL LETTER U WITH BREVE
|
|
935
|
+
Ucirc ISOlat1 0x00DB # LATIN CAPITAL LETTER U WITH CIRCUMFLEX
|
|
936
|
+
ucirc ISOlat1 0x00FB # LATIN SMALL LETTER U WITH CIRCUMFLEX
|
|
937
|
+
Ucy ISOcyr1 0x0423 # CYRILLIC CAPITAL LETTER U
|
|
938
|
+
ucy ISOcyr1 0x0443 # CYRILLIC SMALL LETTER U
|
|
939
|
+
Udblac ISOlat2 0x0170 # LATIN CAPITAL LETTER U WITH DOUBLE ACUTE
|
|
940
|
+
udblac ISOlat2 0x0171 # LATIN SMALL LETTER U WITH DOUBLE ACUTE
|
|
941
|
+
udiagr ISOgrk2 0x03B0 # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND
|
|
942
|
+
TONOS
|
|
943
|
+
Udigr ISOgrk2 0x03AB # GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA
|
|
944
|
+
udigr ISOgrk2 0x03CB # GREEK SMALL LETTER UPSILON WITH DIALYTIKA
|
|
945
|
+
Ugr ISOgrk1 0x03A5 # GREEK CAPITAL LETTER UPSILON
|
|
946
|
+
ugr ISOgrk1 0x03C5 # GREEK SMALL LETTER UPSILON
|
|
947
|
+
Ugrave ISOlat1 0x00D9 # LATIN CAPITAL LETTER U WITH GRAVE
|
|
948
|
+
ugrave ISOlat1 0x00F9 # LATIN SMALL LETTER U WITH GRAVE
|
|
949
|
+
uharl ISOamsa 0x21BF # UPWARDS HARPOON WITH BARB LEFTWARDS
|
|
950
|
+
uharr ISOamsa 0x21BE # UPWARDS HARPOON WITH BARB RIGHTWARDS
|
|
951
|
+
uhblk ISOpub 0x2580 # UPPER HALF BLOCK
|
|
952
|
+
ulcorn ISOamsc 0x231C # TOP LEFT CORNER
|
|
953
|
+
ulcrop ISOpub 0x230F # TOP LEFT CROP
|
|
954
|
+
Umacr ISOlat2 0x016A # LATIN CAPITAL LETTER U WITH MACRON
|
|
955
|
+
umacr ISOlat2 0x016B # LATIN SMALL LETTER U WITH MACRON
|
|
956
|
+
uml ISOdia 0x00A8 # DIAERESIS
|
|
957
|
+
Uogon ISOlat2 0x0172 # LATIN CAPITAL LETTER U WITH OGONEK
|
|
958
|
+
uogon ISOlat2 0x0173 # LATIN SMALL LETTER U WITH OGONEK
|
|
959
|
+
uplus ISOamsb 0x228E # MULTISET UNION
|
|
960
|
+
Upsi ISOgrk3 0x03A5 # GREEK CAPITAL LETTER UPSILON
|
|
961
|
+
upsi ISOgrk3 0x03C5 # GREEK SMALL LETTER UPSILON
|
|
962
|
+
upsih HTMLsymbol 0x03D2 # GREEK UPSILON WITH HOOK SYMBOL
|
|
963
|
+
Upsilon HTMLsymbol 0x03A5 # GREEK CAPITAL LETTER UPSILON
|
|
964
|
+
upsilon HTMLsymbol 0x03C5 # GREEK SMALL LETTER UPSILON
|
|
965
|
+
urcorn ISOamsc 0x231D # TOP RIGHT CORNER
|
|
966
|
+
urcrop ISOpub 0x230E # TOP RIGHT CROP
|
|
967
|
+
Uring ISOlat2 0x016E # LATIN CAPITAL LETTER U WITH RING ABOVE
|
|
968
|
+
uring ISOlat2 0x016F # LATIN SMALL LETTER U WITH RING ABOVE
|
|
969
|
+
Utilde ISOlat2 0x0168 # LATIN CAPITAL LETTER U WITH TILDE
|
|
970
|
+
utilde ISOlat2 0x0169 # LATIN SMALL LETTER U WITH TILDE
|
|
971
|
+
utri ISOpub 0x25B5 # WHITE UP-POINTING SMALL TRIANGLE
|
|
972
|
+
utrif ISOpub 0x25B4 # BLACK UP-POINTING SMALL TRIANGLE
|
|
973
|
+
Uuml ISOlat1 0x00DC # LATIN CAPITAL LETTER U WITH DIAERESIS
|
|
974
|
+
uuml ISOlat1 0x00FC # LATIN SMALL LETTER U WITH DIAERESIS
|
|
975
|
+
varr ISOamsa 0x2195 # UP DOWN ARROW
|
|
976
|
+
vArr ISOamsa 0x21D5 # UP DOWN DOUBLE ARROW
|
|
977
|
+
Vcy ISOcyr1 0x0412 # CYRILLIC CAPITAL LETTER VE
|
|
978
|
+
vcy ISOcyr1 0x0432 # CYRILLIC SMALL LETTER VE
|
|
979
|
+
vdash ISOamsr 0x22A2 # RIGHT TACK
|
|
980
|
+
vDash ISOamsr 0x22A8 # TRUE
|
|
981
|
+
Vdash ISOamsr 0x22A9 # FORCES
|
|
982
|
+
veebar ISOamsr 0x22BB # XOR
|
|
983
|
+
vellip ISOpub 0x22EE # VERTICAL ELLIPSIS
|
|
984
|
+
verbar ISOnum 0x007C # VERTICAL LINE
|
|
985
|
+
Verbar ISOtech 0x2016 # DOUBLE VERTICAL LINE
|
|
986
|
+
vltri ISOamsr 0x22B2 # NORMAL SUBGROUP OF
|
|
987
|
+
vprime ISOamso 0x2032 # PRIME
|
|
988
|
+
vprop ISOamsr 0x221D # PROPORTIONAL TO
|
|
989
|
+
vrtri ISOamsr 0x22B3 # CONTAINS AS NORMAL SUBGROUP
|
|
990
|
+
vsubnE ISOamsn 0x228A # SUBSET OF WITH NOT EQUAL TO
|
|
991
|
+
vsubne ISOamsn 0x228A # SUBSET OF WITH NOT EQUAL TO
|
|
992
|
+
vsupne ISOamsn 0x228B # SUPERSET OF WITH NOT EQUAL TO
|
|
993
|
+
vsupnE ISOamsn 0x228B # SUPERSET OF WITH NOT EQUAL TO
|
|
994
|
+
Vvdash ISOamsr 0x22AA # TRIPLE VERTICAL BAR RIGHT TURNSTILE
|
|
995
|
+
Wcirc ISOlat2 0x0174 # LATIN CAPITAL LETTER W WITH CIRCUMFLEX
|
|
996
|
+
wcirc ISOlat2 0x0175 # LATIN SMALL LETTER W WITH CIRCUMFLEX
|
|
997
|
+
wedgeq ISOtech 0x2259 # ESTIMATES
|
|
998
|
+
weierp ISOamso 0x2118 # SCRIPT CAPITAL P
|
|
999
|
+
wreath ISOamsb 0x2240 # WREATH PRODUCT
|
|
1000
|
+
xcirc ISOamsb 0x25CB # WHITE CIRCLE
|
|
1001
|
+
xdtri ISOamsb 0x25BD # WHITE DOWN-POINTING TRIANGLE
|
|
1002
|
+
Xgr ISOgrk1 0x039E # GREEK CAPITAL LETTER XI
|
|
1003
|
+
xgr ISOgrk1 0x03BE # GREEK SMALL LETTER XI
|
|
1004
|
+
xhArr ISOamsa 0x2194 # LEFT RIGHT ARROW
|
|
1005
|
+
xharr ISOamsa 0x2194 # LEFT RIGHT ARROW
|
|
1006
|
+
Xi ISOgrk3 0x039E # GREEK CAPITAL LETTER XI
|
|
1007
|
+
xi ISOgrk3 0x03BE # GREEK SMALL LETTER XI
|
|
1008
|
+
xlArr ISOamsa 0x21D0 # LEFTWARDS DOUBLE ARROW
|
|
1009
|
+
xrArr ISOamsa 0x21D2 # RIGHTWARDS DOUBLE ARROW
|
|
1010
|
+
xutri ISOamsb 0x25B3 # WHITE UP-POINTING TRIANGLE
|
|
1011
|
+
Yacute ISOlat1 0x00DD # LATIN CAPITAL LETTER Y WITH ACUTE
|
|
1012
|
+
yacute ISOlat1 0x00FD # LATIN SMALL LETTER Y WITH ACUTE
|
|
1013
|
+
YAcy ISOcyr1 0x042F # CYRILLIC CAPITAL LETTER YA
|
|
1014
|
+
yacy ISOcyr1 0x044F # CYRILLIC SMALL LETTER YA
|
|
1015
|
+
Ycirc ISOlat2 0x0176 # LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
|
|
1016
|
+
ycirc ISOlat2 0x0177 # LATIN SMALL LETTER Y WITH CIRCUMFLEX
|
|
1017
|
+
Ycy ISOcyr1 0x042B # CYRILLIC CAPITAL LETTER YERU
|
|
1018
|
+
ycy ISOcyr1 0x044B # CYRILLIC SMALL LETTER YERU
|
|
1019
|
+
yen ISOnum 0x00A5 # YEN SIGN
|
|
1020
|
+
YIcy ISOcyr2 0x0407 # CYRILLIC CAPITAL LETTER YI
|
|
1021
|
+
yicy ISOcyr2 0x0457 # CYRILLIC SMALL LETTER YI
|
|
1022
|
+
YUcy ISOcyr1 0x042E # CYRILLIC CAPITAL LETTER YU
|
|
1023
|
+
yucy ISOcyr1 0x044E # CYRILLIC SMALL LETTER YU
|
|
1024
|
+
yuml ISOlat1 0x00FF # LATIN SMALL LETTER Y WITH DIAERESIS
|
|
1025
|
+
Yuml ISOlat2 0x0178 # LATIN CAPITAL LETTER Y WITH DIAERESIS
|
|
1026
|
+
Zacute ISOlat2 0x0179 # LATIN CAPITAL LETTER Z WITH ACUTE
|
|
1027
|
+
zacute ISOlat2 0x017A # LATIN SMALL LETTER Z WITH ACUTE
|
|
1028
|
+
Zcaron ISOlat2 0x017D # LATIN CAPITAL LETTER Z WITH CARON
|
|
1029
|
+
zcaron ISOlat2 0x017E # LATIN SMALL LETTER Z WITH CARON
|
|
1030
|
+
Zcy ISOcyr1 0x0417 # CYRILLIC CAPITAL LETTER ZE
|
|
1031
|
+
zcy ISOcyr1 0x0437 # CYRILLIC SMALL LETTER ZE
|
|
1032
|
+
Zdot ISOlat2 0x017B # LATIN CAPITAL LETTER Z WITH DOT ABOVE
|
|
1033
|
+
zdot ISOlat2 0x017C # LATIN SMALL LETTER Z WITH DOT ABOVE
|
|
1034
|
+
Zeta HTMLsymbol 0x0396 # GREEK CAPITAL LETTER ZETA
|
|
1035
|
+
zeta ISOgrk3 0x03B6 # GREEK SMALL LETTER ZETA
|
|
1036
|
+
Zgr ISOgrk1 0x0396 # GREEK CAPITAL LETTER ZETA
|
|
1037
|
+
zgr ISOgrk1 0x03B6 # GREEK SMALL LETTER ZETA
|
|
1038
|
+
ZHcy ISOcyr1 0x0416 # CYRILLIC CAPITAL LETTER ZHE
|
|
1039
|
+
zhcy ISOcyr1 0x0436 # CYRILLIC SMALL LETTER ZHE
|
|
1040
|
+
zwj HTMLspecial 0x200D # ZERO WIDTH JOINER
|
|
1041
|
+
zwnj HTMLspecial 0x200C # ZERO WIDTH NON-JOINER
|