Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Viewing/showing special characters/computer language - how to?  (Read 3746 times)

0 Members and 1 Guest are viewing this topic.

AlienBZ

    Topic Starter


    Rookie

    • Experience: Beginner
    • OS: Unknown
    Viewing/showing special characters/computer language - how to?
    « on: September 28, 2012, 11:27:13 AM »
    I'm playing around with MS-Dos in a VMware Player virtual machine, I have a "for dummies" book, "DOS" and I'm looking for where this book tells me what commands to type if I'd like to see the computer language characters, such as the omega, alpha symbols, a heart symbol (on white playing-card like background), etc, but I cannot find this anywhere in this book. I even tried searching online but couldn't find anything - could you please help me?

    Thanks in advance.

    gpl



      Apprentice
    • Thanked: 27
      Re: Viewing/showing special characters/computer language - how to?
      « Reply #1 on: September 28, 2012, 11:55:18 AM »
      if all you wish to do is to show it, then this will do
      Code: [Select]
      echo Ωopen charmap, select the character you want to use, copy it then paste it into the DOS window

      foxidrive



        Specialist
      • Thanked: 268
      • Experience: Experienced
      • OS: Windows 8
      Re: Viewing/showing special characters/computer language - how to?
      « Reply #2 on: September 29, 2012, 12:39:04 AM »
      You are most likely to be after the ascii table.

      http://www.google.com.au/search?hl=en&q=ascii+character+set&btnG=Google+Search

      To get an ascii character at the MSDOS prompt and in MSDOS editors then hold down ALT and type the three digit number of the ascii value on the number pad and release ALT

      AlienBZ

        Topic Starter


        Rookie

        • Experience: Beginner
        • OS: Unknown
        Re: Viewing/showing special characters/computer language - how to?
        « Reply #3 on: September 29, 2012, 07:55:26 AM »
        I wanted these ascii codes to show up in like, several rows in white against a blue background, the way someone showed me once about 20 years ago on a Dos machine - how to I get DOS to do this?

        foxidrive



          Specialist
        • Thanked: 268
        • Experience: Experienced
        • OS: Windows 8
        Re: Viewing/showing special characters/computer language - how to?
        « Reply #4 on: September 29, 2012, 09:07:11 AM »
        This is a Qbasic script so save it as char.bas and run it with

        qbasic /run char.bas

        Code: [Select]
        COLOR 15, 1
        FOR c = 1 TO 255
        PRINT CHR$(c); " ";
        NEXT

        Squashman



          Specialist
        • Thanked: 134
        • Experience: Experienced
        • OS: Other
        Re: Viewing/showing special characters/computer language - how to?
        « Reply #5 on: September 30, 2012, 12:33:54 PM »
        Foxidrive,
        Didn't we talk about this on dostips a few months back?
        Thought I remember someone posting a Debug script that would list all the characters to the screen.

        foxidrive



          Specialist
        • Thanked: 268
        • Experience: Experienced
        • OS: Windows 8
        Re: Viewing/showing special characters/computer language - how to?
        « Reply #6 on: September 30, 2012, 03:26:21 PM »
        I don't recall.   Maybe debug was used to dump the character set from rom in the BIOS.