Sponsored Content
Full Discussion: Convert HEX to EBCDIC IN C
Top Forums Programming Convert HEX to EBCDIC IN C Post 302261480 by junaid.nehvi on Monday 24th of November 2008 11:29:55 PM
Old 11-25-2008
for char hexval[10]="c1c2c3c4c5";
i am expecting EBCDIC values as:
A
B
C
D
E
but i am getting
ascii value is 193 Á
ebcdic value is 119
ascii value is 194 Â
ebcdic value is 120
ascii value is 195 Ã
ebcdic value is 128
ascii value is 196 Ä
ebcdic value is 138
ascii value is 197 Å
ebcdic value is 139



how can i get the values as A B C D E.......
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

convert hex to ascii text

Is there a command to convert hex characters into their respective ascii values? (5 Replies)
Discussion started by: dangral
5 Replies

2. Programming

to convert int to hex

Hi, Can you help me in converting int value to hex in a single command. Thanks (8 Replies)
Discussion started by: naan
8 Replies

3. Shell Programming and Scripting

How to Convert Hex value to Dec ?

Hi All, I want to convert below Hex value to Dec value in each column .How to do it ? This data is in a 1 file. 4e20 0475 2710 010f 7530 69a2 7530 7e2f 4e20 02dd 7530 6299 4e20 0c0a 7530 69a2 4e20 0a0b 2710 0048 7530 7955 4e20 0d23 7530 622d 7530 9121 2710 001f 7530 7d3f (6 Replies)
Discussion started by: Nayanajith
6 Replies

4. UNIX for Dummies Questions & Answers

Conversion from EBCDIC to HEX

Hello, Is there any utility around able to deal with the conversion of some EBCDIC coded string into an hexadecimal value? Thanks (1 Reply)
Discussion started by: Indalecio
1 Replies

5. Shell Programming and Scripting

How to convert hex numbers to decimal ?

Hi, please tell me how to convert hex number to decimal 000000E7 000000000002640D 0000000000025B16 and seconds to minutes, hours, days, months, years bytes to kbytes, mbytes , gbytes read the following examples while read a b do printf "%5d %5d\n" "0x$a" "0x$b" done < "$FILE"... (15 Replies)
Discussion started by: jack2
15 Replies

6. Shell Programming and Scripting

Convert hex to decimal or reverse is better?

Please Help Me! about the problem down under. I have 2 files with nearly the same characteristics, I have to convert one to the other format or the other format to one's format. I want to write it with awk. The first file contain lines like this: 300000001#A#Y#Y#Y#Y The other file contain... (4 Replies)
Discussion started by: Axel82
4 Replies

7. Shell Programming and Scripting

Convert Hex - KSH

Hello, I woild like to convert hex on KSH not BASH: I tried to use: tmp=31 printf "\x"${tmp}"" it works on bash - Output is '1' but not on ksh. please advice on the right syntax. Thanks. (4 Replies)
Discussion started by: LiorAmitai
4 Replies

8. Shell Programming and Scripting

Convert to Hex in perl

Hi, i want to convert number 5860533159 to hexadecimal. i need to use perl. i used $foo = 5860533159; $hexval3 = sprintf("%#x", $foo); i am getting value as 0xffffffff. i need to get value as 0x15D50A3A7. when i converted using google calculator, i got the correct value, expected... (9 Replies)
Discussion started by: asak
9 Replies

9. Shell Programming and Scripting

Convert hex to decimal

can someone help me in converting hex streams to decimal values using perl script Hex value: $my_hex_stream="0c07ac14001676"; Every hex value in the above stream should be converted in to decimal and separated by comma. The output should be: 12,07,172,20,00,22,118 (2 Replies)
Discussion started by: Arun_Linux
2 Replies

10. UNIX for Beginners Questions & Answers

How to convert dec to hex in python?

When I try to convert big numbers I get extra numbers at the end that doesn't move plus an L character too. How to remove the 4 extra characters at the end 000L? 8b8dbbc584d9c000L 8b8dc4ddd34c6000L 8b8dcdf621bf0000L 8b8dd70e7031a000L 8b8de026bea44000L #!/usr/bin/python ... (9 Replies)
Discussion started by: bigvito19
9 Replies
HEXEDITOR(1)						      General Commands Manual						      HEXEDITOR(1)

NAME
hexeditor - Full screen curses Hex editor SYNOPSIS
hexeditor [ -8abdfgqrv ] [ filename ] DESCRIPTION
Hexeditor is an editor to edit binary (or any) files or disks. The Display consists of the current offset from 0 (the first byte), the next sixteen bytes (aligned by bytes or 32-bit words), and its ASCII or EBCDIC text representation. OPTIONS
-h, --help Display help -8, --highbit Display 8-bit text -a, --alltext Display all text regardless that you know better -b, --buffer Buffer the entire file into memory. Faster, and enables insert and delete. -d, --disk File editing is a disk. OpenBSD and Linux only. -f, --force Force editing of a disk. Need this option to enable writing to disks. -q, --quiet Quiet Mode; Turn off all beeping. -r, --readonly Do not allow modifying the file -v, --version Display version number Commands and keys ^A Insert byte Insert Insert byte ^D Delete byte Delete Delete byte ^E viEw as text dump ^F Page down ^V Page down Page Down Page down ^B Page Up ^Y Page Up Alt-V Page Up Page Up Page Up Tab Switch from hex to text representation ^I Switch from hex to text representation ^T goTo offset ^G Get help ^L Redraw screen ^C Quit without saving ^O Save ^X Save and Quit ^W Search (text/hex) ^N find Next ^U Undo ^R ASCII <=> EBCDIC ^P Switch Spacings ^+ Binary Calculator Author Adam Rogoyski <apoc@laker.net> See Also od (1) BUGS
Editing disks is only supported in Linux and OpenBSD. Please email Adam Rogoyski <apoc@laker.net> with any bugs you might find. This man page is intentionally brief. Please Read the included documentation in Texinfo format for additional information HEXEDITOR(1)
All times are GMT -4. The time now is 08:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy