Results 1 to 4 of 4

Thread: Hex to Ascii Converter

  1. #1
    Join Date
    Nov 2008
    Posts
    26

    Hex to Ascii Converter

    Hello , i want to download any good hex to ascii coverter software , can you tell me where can I download the hex to ascii software for free ,actually i am into programming and so I wanted to know how to convert hex to ascii ,is it very important for me please help me thanks in advance

  2. #2
    Join Date
    Apr 2008
    Posts
    3,267

    Re: Hex to Ascii Converter

    you could download the ASCII to HEX software , ASCII to HEX is a simple little utility that allows the user to convert data into ASCII Hex, or vice versa. Convert hexadecimal strings to ASCII text with a single click. Discover what that incomprehensible string of hex characters converts to, use everyday with your existing IDE or use it to look up what the code for the ASCII dollar sign is, etc..

  3. #3
    Join Date
    Nov 2005
    Posts
    1,203

    Re: Hex to Ascii Converter

    You can try this code

    Public Function hex2ascii(ByVal hextext As String) As String

    For y = 1 To Len(hextext)
    num = Mid(hextext, y, 2)
    Value = Value & Chr(Val("&h" & num))
    y = y + 1
    Next y

    hex2ascii = Value
    End Function

  4. #4
    Join Date
    Nov 2005
    Posts
    3,026

    Re: Hex to Ascii Converter

    Something like should also be useful :

    # include <stdio.h>
    int main (int argc, char ** argv)
    (
    unsigned int a, count = 0;
    char c, s [1024];
    while (1)
    (
    scanf ( "% x", & a);
    c = char (a);
    s [count + +] = c;
    )
    s [account] = '\ 0';
    printf ( "% s", s);
    return 0;
    )

Similar Threads

  1. Binary Ascii Characters
    By Rodney123 in forum Operating Systems
    Replies: 3
    Last Post: 01-09-2009, 10:42 AM
  2. How to Create ASCII Art
    By avvia in forum Windows Software
    Replies: 3
    Last Post: 29-06-2009, 11:06 AM
  3. How to convert a character to ASCII in C++?
    By RupaliP in forum Software Development
    Replies: 2
    Last Post: 18-02-2009, 12:03 AM
  4. ASCII Code Table in SQL
    By SuB-Zero in forum Software Development
    Replies: 1
    Last Post: 10-11-2008, 02:44 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,891,712.08842 seconds with 17 queries