Sponsored Content
Full Discussion: Convert hex to decimal
Top Forums Shell Programming and Scripting Convert hex to decimal Post 302652331 by Arun_Linux on Thursday 7th of June 2012 03:19:26 AM
Old 06-07-2012
Java 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

Last edited by Franklin52; 06-07-2012 at 04:20 AM.. Reason: Please use code tags for data and code samples
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Hex to Decimal Convertion

Dear all, I have a file like this. EE48 4473 7FC9 EE48 102C D23 EE48 4DD 27D EE48 0 0 EE48 3FFE 854 F230 DC6 ... (1 Reply)
Discussion started by: Nayanajith
1 Replies

2. Shell Programming and Scripting

hex to decimal

hi all, echo "ibase=16;obase=10;11" | bc shouldn't i get 17? i am getting 11 i am trying to convert 11 (hex) to decimal stuck! JAK (4 Replies)
Discussion started by: jakSun8
4 Replies

3. 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

4. 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

5. Shell Programming and Scripting

Decimal to hex conversion

Dear All PROs Thanks in advance need a shell for Decimal to hex conversion input file (decimal values) 65,5,48,66,133,131,118,47 65,5,48,66,133,131,83,63 . . desire output should be (Hex value)... (11 Replies)
Discussion started by: The_Archer
11 Replies

6. Shell Programming and Scripting

Converting hex to ascii/decimal

I am writing a bash script to do some parsing on a log and I am running into a problem when it comes to converting only certain sections of the file from hex to ascii or hex to decimal. Data Example: The hex values after Hardware and SW Version I need to convert from Hex to ASCII and the... (16 Replies)
Discussion started by: Shiftkey
16 Replies

7. UNIX for Advanced & Expert Users

Convert 32 bit hex value into fields in decimal

I have 32 bit value in hex that I want to separate into fields and then convert the fields into decimal values. Input file has 2 words of 32 bit hex values: 000001ac ca85210e Output both words separated into individual bit fields: ca85210e: f1(31:9), f2(8:0) f7c392ac: f1(31:14),... (2 Replies)
Discussion started by: morrbie
2 Replies

8. Shell Programming and Scripting

How to convert a file containing hex code to decimal using script?

The file contains code like the below and need to convert each one into a decimal 00 00 00 04 17 03 06 01 So the output should come as 0 0 0 4 23 3 6 1 (24 Replies)
Discussion started by: necro98
24 Replies

9. Shell Programming and Scripting

Converting decimal to hex

How to convert decimal value to hex and than take 1st digits as variable sample data 84844294,5,6 51291736,2,3 84844294,5,6 51291736,2,3 i can use {printf "%x,%d\n",$1,$2} but than i want to filter base on 1st hex digit 1st recrd (1 Reply)
Discussion started by: before4
1 Replies

10. Programming

Urgent help needed.. C++ program to convert decimal to hexa decimal

Hi , seq can be 0...128 int windex = seq / 8; int bindex = seq % 8; unsigned char bitvalue = '\x01' << (7-bindex) ; bpv.bitmapvalue = bitvalue; This is the part of a program to convert decimal to bitmap value of hexadecimal. I want this to change to convert only to... (1 Reply)
Discussion started by: greenworld123
1 Replies
ascii2uni(1)						      General Commands Manual						      ascii2uni(1)

NAME
ascii2uni - convert 7-bit ASCII representations to UTF-8 Unicode SYNOPSIS
ascii2uni [options] (<input file name>) DESCRIPTION
ascii2uni converts various 7-bit ASCII representations to UTF-8. It reads from the standard input and writes to the standard output. The representations understood are listed below under the command line options. If no format is specified, standard hexadecimal format (e.g. 0x00e9) is assumed. COMMAND LINE OPTIONS
-a <format> Convert from the specified format. Formats may be specified by means of the following arbitrary single character codes, by means of names such as "SGML_decimal", and by examples of the desired format. A Convert hexadecimal numbers with prefix U in angle-brackets (<U00E9>). B Convert x-escaped hex (e.g. x00E9) C Convert x escaped hexadecimal numbers in braces (e.g. x{00E9}). D Convert decimal HTML numeric character references (e.g. &#0233;) E Convert hexadecimal with prefix U (U00E9). F Convert hexadecimal with prefix u (u00E9). G Convert hexadecimal in single quotes with prefix X (e.g. X'00E9'). H Convert hexadecimal HTML numeric character references (e.g. &#x00E9;) I Convert hexadecimal UTF-8 with each byte's hex preceded by an =-sign (e.g. =C3=A9) . This is the Quoted Printable format defined by RFC 2045. J Convert hexadecimal UTF-8 with each byte's hex preceded by a %-sign (e.g. %C3%A9). This is the URIescape format defined by RFC 2396. K Convert octal UTF-8 with each byte escaped by a backslash (e.g. 303251) L Convert U-escaped hex outside the BMP, u-escaped hex within the BMP (U+0000-U+FFFF). M Convert hexadecimal SGML numeric character references (e.g. #xE9;) N Convert decimal SGML numeric character references (e.g. #233;) O Convert octal escapes for the three low bytes in big-endian order(e.g. 0000351)) P Convert hexadecimal numbers with prefix U+ (e.g. U+00E9) Q Convert HTML character entities (e.g. &eacute;). R Convert raw hexadecimal numbers (e.g. 00E9) S Convert hexadecimal escapes for the three low bytes in big-endian order (e.g. x00x00xE9) T Convert decimal escapes for the three low bytes in big-endian order (e.g. d000d000d233) U Convert u-escaped hexadecimal numbers (e.g. u00E9). V Convert u-escaped decimal numbers (e.g. u00233). X Convert standard hexadecimal numbers (e.g. 0x00E9). Y Convert all three types of HTML escape: hexadecimal and decimal character references and character entities. 0 Convert hexadecimal UTF-8 with each byte's hex enclosed within angle brackets (e.g. <C3><A9>). 1 Convert Common Lisp format hexadecimal numbers (e.g. #x00E9). 2 Convert Perl format decimal numbers with prefix v (e.g. v233). 3 Convert hexadecimal numbers with prefix $ (e.g. $00E9). 4 Convert Postscript format hexadecimal numbers with prefix 16# (e.g. 16#00E9). 5 Convert Common Lisp format hexadecimal numbers with prefix #16r (e.g. #16r00E9). 6 Convert ADA format hexadecimal numbers with prefix 16# and suffix # (e.g. 16#00E9#). 7 Convert Apache log format hexadecimal UTF-8 with each byte's hex preceded by a backslash-x (e.g. xC3xA9). 8 Convert Microsoft OOXML format hexadecimal numbers with prefix _x and suffix _ (e.g. _x00E9_). 9 Convert %u-escaped hexadecimal numbers (e.g. %u00E9). -h Help. Print the usage message and exit. -v Print program version information and exit. -m Accept deprecated HTML entities lacking final semicolon, e.g. "&#x00E9" in place of "&#x00E9;". -p Pure. Assume that the input consists entirely of escapes except for arbitrary (but non-null) amounts of separating whitespace. -q Be quiet. Do not chat unnecessarily. -Z <format> Convert input using the supplied format. The format specified will be used as the format string in a call to sscanf(3) with a single argument consisting of a pointer to an unsigned long integer. For example, to obtain the same results as with the -U flag, the for- mat would be: u%04X. If the format is Quoted-Printable, although it is not strictly speaking conversion of an ASCII escape to Unicode, in accordance with RFC 2045, if an equal-sign occurs at the end of an input line, both the equal-sign and the immediately following newline are skipped. All options that accept hexadecimal input recognize both upper- and lower-case hexadecimal digits. EXIT STATUS
The following values are returned on exit: 0 SUCCESS The input was successfully converted. 3 INFO The user requested information such as the version number or usage synopsis and this has been provided. 5 BAD OPTION An incorrect option flag was given on the command line. 7 OUT OF MEMORY Additional memory was unsuccessfully requested. 8 BAD RECORD An ill-formed record was detected in the input. SEE ALSO
uni2ascii(1) AUTHOR
Bill Poser <billposer@alum.mit.edu> LICENSE
GNU General Public License December, 2010 ascii2uni(1)
All times are GMT -4. The time now is 06:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy