When reading in a string representing a number in hexadecimal, use strtol() to convert it to a long. Then if you want to print the number in ... ... <看更多>
「hex to decimal c++」的推薦目錄:
hex to decimal c++ 在 Program for Hexadecimal to Decimal - GeeksforGeeks 的相關結果
At the time of extracting digits from the hexadecimal number, multiply the digit with the proper base (Power of 16) and add it to the variable ... ... <看更多>
hex to decimal c++ 在 Hexadecimal to Decimal in C - javatpoint 的相關結果
The hexadecimal is also known as base-16, it is a number system that uses the 16 symbols to represent a particular value, and these symbols are from (0-9 and ... ... <看更多>
hex to decimal c++ 在 C Program to Convert Hexadecimal to Decimal | SlayStudy 的相關結果
Initialize p = 0, decimal = 0. · Scan all characters of Hex and perform the following operations from Right-To-Left. Let scanned character be ch. Convert ch to ... ... <看更多>
hex to decimal c++ 在 How do I convert hexadecimal to decimal in C? - Quora 的相關結果
Input a hexadecimal number from user. Store it in some variable hex. · Initialize decimal = 0 , digit = length_of_hexadecimal_digit - 1 and i = 0 . · Run a loop ... ... <看更多>
hex to decimal c++ 在 Hexadecimal to Decimal Converter - RapidTables 的相關結果
Hex to decimal converter and how to convert. ... Multiply each digit of the hex number with its corresponding power of 16 and sum: ... C, 12, -. ... <看更多>
hex to decimal c++ 在 C Program to Convert Hexadecimal to Decimal - CodesCracker 的相關結果
Program Explained · Here we have used the variable dotPos that checks whether decimal point present inside the given hexadecimal number or not · If present, then ... ... <看更多>
hex to decimal c++ 在 C Program to convert hexadecimal number to decimal number 的相關結果
Problem Statement: Write a C Program to convert hexadecimal number to decimal number. Required Knowledge: C Input/Output, C Variables, C Datatypes, C Loop. ... <看更多>
hex to decimal c++ 在 Hexadecimal to Decimal Converter 的相關結果
Hexadecimal to decimal converter helps you to calculate decimal value from a ... 8, 9) and the first six letters of the English alphabet (A, B, C, D, E, F). ... <看更多>
hex to decimal c++ 在 C program to Convert Decimal to Hexadecimal - Sanfoundry 的相關結果
C program to Convert Decimal to Hexadecimal · 1. Take a decimal number as input. · 2. Divide the input number by 16. Store the remainder in the array. · 3. Do step ... ... <看更多>
hex to decimal c++ 在 Hex to decimal – converter and “How to” - C Programming 的相關結果
The algorithm · Start from the right-most digit. Its weight(or coefficient) is 1. · Multiply the weight of the position by its digit. Add the product to the ... ... <看更多>
hex to decimal c++ 在 C program to convert number from Hexadecimal to Decimal 的相關結果
In this program, we will read Hexadecimal Value and converts it into Hexadecimal Number System. This program is for Hexadecimal to Decimal Conversion in C. ... <看更多>
hex to decimal c++ 在 How to Use Hex with Binary for C Programming - dummies 的相關結果
You can write hex values directly in your code. Prefix the values with 0x, followed by a valid hexadecimal number using either upper- or lowercase letters where ... ... <看更多>
hex to decimal c++ 在 C Program to Convert Binary Number to Decimal and vice-versa 的相關結果
In this C programming example, you will learn to convert binary numbers to decimal and vice-versa manually by creating a user-defined function. ... <看更多>
hex to decimal c++ 在 Conversion of Hex decimal to integer value using C language 的相關結果
Let scanned character be A. ... Convert A to appropriate decimal form and store it in x. ... y= y + 1. Return decimal. We can also scan the ... ... <看更多>
hex to decimal c++ 在 C code to convert decimal to hexadecimal - Scanftree.com 的相關結果
#include<stdio.h> · int main() { · long int decimalNumber; · printf("Enter any decimal number: "); · scanf("%d",&decimalNumber); · printf("Equivalent hexadecimal ... ... <看更多>
hex to decimal c++ 在 Convert Hexadecimal to Decimal - w3resource 的相關結果
Hexadecimal to decimal converter tool to convert a hexadecimal number ... and A,B,C,D,E,F (or alternatively a, b, c, d, e, f) to represent ... ... <看更多>
hex to decimal c++ 在 C 整數常數 的相關結果
使用整數常數來表示無法變更的整數值。 Syntax. integer-constant: decimal-constantinteger-suffixopt octal-constantinteger-suffixopt hexadecimal- ... ... <看更多>
hex to decimal c++ 在 Convert Hexadecimal To Decimal Number C Program 的相關結果
Method 1: C Program To Convert Hexadecimal To Decimal Value using While Loop · int main() · int decimal_number = 0, remainder, hexadecimal_number ... ... <看更多>
hex to decimal c++ 在 Introduction to Hexadecimal in C 的相關結果
In C programming language, a hexadecimal number is a value having a made up of 16 symbols which have 10 standard numerical systems from 0 to 9 and 6 extra ... ... <看更多>
hex to decimal c++ 在 Hex Calculator 的相關結果
The hexadecimal number system (hex) functions virtually identically to the ... just as the decimal system does, but also uses the letters A, B, C, D, E, ... ... <看更多>
hex to decimal c++ 在 How to convert hexadecimal to decimal - Log2Base2 的相關結果
Hexadecimal - 16 number system which consists numbers {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f}. Decimal - 10 number system which consists numbers {0 ... ... <看更多>
hex to decimal c++ 在 Convert Hexadecimal to Decimal Program in C - Sitesbay 的相關結果
Convert Hexadecimal to Decimal in C - To convert Hexadecimal to Decimal number first accept Hexadecimal as a input then convert into equivalent Decimal ... ... <看更多>
hex to decimal c++ 在 Hexadecimal - SparkFun Learn 的相關結果
Remember to convert alphabetic hex values (A, B, C, D, E, and F) to their decimal equivalent (10, 11, 12, 13, 14, and 15). Move ... ... <看更多>
hex to decimal c++ 在 HEX C8 to DECIMAL 的相關結果
The value of HEX C8 in decimal is 200. The value of HEX C8 in binary is 11001000. 8, 8 X 16 0 = 8. C ... ... <看更多>
hex to decimal c++ 在 Converting between number bases using hexadecimal - BBC 的相關結果
Hexadecimal. , also known as hex, is the third commonly used number system. It has 16 units - 0-9 and the letters A, B, C, D, E and F. ... <看更多>
hex to decimal c++ 在 Conversion From Hex to Decimal - Vedantu 的相關結果
In Hexadecimal number system,. 7 = 7. C = 12. F = 15. To convert 7CF into a decimal number, multiply each digit with the power of 16 starting from the unit ... ... <看更多>
hex to decimal c++ 在 How to Convert hexadecimal C in decimal? 的相關結果
So, the number 12 is the decimal equivalent of hexadecimal number C (Answer). Convert from/to decimal to binary. Hexadecimal ... ... <看更多>
hex to decimal c++ 在 C program to convert hexadecimal to decimal - Open Tech ... 的相關結果
This is a C program that converts a hexadecimal number to its equivalent decimal number. Apart from the standard C library for I/O functions ... ... <看更多>
hex to decimal c++ 在 What is Hex to Decimal Formula? Examples - Cuemath 的相關結果
The hexadecimal number system uses sixteen digits/alphabets: The digits 0,1, 2, 3, 4, 5, 6, 7, 8, 9 and the letters A, B, C, D, E, F, thus having base 16. ... <看更多>
hex to decimal c++ 在 How to Convert Hexadecimal to Decimal and Decimal to Hex 的相關結果
These letters are: A, B, C, D, E, F. A hex number can be represented using a subscript of 16 (i.e. 23516). These letters come after the decimals ... ... <看更多>
hex to decimal c++ 在 C program to convert Hexadecimal to decimal number 的相關結果
To convert the Hexadecimal number, we should multiply the each digits present in the given Hexadecimal number with its weights and add the products together to ... ... <看更多>
hex to decimal c++ 在 I am looking for hexadecimal to decimal in C for PIC24 的相關結果
You don't need any library function for converting hex to decimal. It's very simple, here's the code: unsigned int sampleHEX=0xffff, ... ... <看更多>
hex to decimal c++ 在 Decimal-hexadecimal-binary conversion table - IU KB 的相關結果
Dec Hex Bin Dec Hex Bin Dec Hex Bin Dec Hex Bin
0 0 00000000 64 40 01000000 128 80 10000000 192 c0 11000000
1 1 00000001 65 41 01000001 129 81 10000001 193 c1 11000001
2 2 00000010 66 42 01000010 130 82 10000010 194 c2 11000010 ... <看更多>
hex to decimal c++ 在 Program to convert Hexadecimal to Decimal 的相關結果
Data requirement:- Input Data:- sizea, hex. Output Data:- decimal. Additional Data:-i, j, value. Program in C ... Here is the source code of the C ... ... <看更多>
hex to decimal c++ 在 Python Program to Convert Hexadecimal to Decimal - Pencil ... 的相關結果
The following conversion table is used to transform hex digit such as A, B, C, etc to its decimal representation. Hex, Decimal, Hex, Decimal. 0, 0, A, 10. 1, 1 ... ... <看更多>
hex to decimal c++ 在 decimal to hexadecimal - gists · GitHub 的相關結果
decimal to hexadecimal. ... gistfile1.c. /*. Exercise 3-4 K&R. To convert a decimal number x to hexadecimal, we can repeatedly divide x by 16,. ... <看更多>
hex to decimal c++ 在 Hex to Decimal(fixed point integer) conversion - RF Wireless ... 的相關結果
This page describes hex to decimal(integer format) conversion and vice versa with C code. ... <看更多>
hex to decimal c++ 在 how to convert hexadecimal to decimal Code Example 的相關結果
Convert a hexadecimal number into decimal c++ ... Converting the hexadecimal number 29.48 to decimal gives you 2/2 41.125 41.8125 ... string hex to int c++. ... <看更多>
hex to decimal c++ 在 Work for C Hex to Decimal Conversion - getcalc.com 的相關結果
What is C hex in decimal? - converter, chart & solved example problem with step by step work for how to carry out hex c to decimal conversion manually. ... <看更多>
hex to decimal c++ 在 Hexadecimal - Wikipedia 的相關結果
In programming, a number of notations are used to denote hexadecimal numbers, usually involving a prefix. The prefix 0x is ... ... <看更多>
hex to decimal c++ 在 [Solved] Convert hex to decimal in R - Code Redirect 的相關結果
strtoi(c("0xff", "077", "123")) #[1] 255 63 123. Friday, August 13, 2021. Rhendz. answered 4 Months ago. Rhendz. 96. To convert from hex to decimal, ... ... <看更多>
hex to decimal c++ 在 Hex to Decimal Converter - The Calculator Site 的相關結果
Use this hex to decimal conversion tool to convert a hex value to a decimal number ... i.e. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, plus the letters A, B, C, D, E, F. ... <看更多>
hex to decimal c++ 在 std::dec, std::hex, std::oct - cppreference.com 的相關結果
Regular expressions library (C++11) ... The number 42 in decimal: 42 The number 42 in hex: 2a Parsing "2A" as hex gives 42 42 as hex gives ... ... <看更多>
hex to decimal c++ 在 Hex to Decimal Converter - Eezy Tutorials 的相關結果
Hex to Binary */. NSMutableString *hexString = [ NSMutableString string];. for ( int i = 0; i < [string length]; i++) {. char c = [[string lowercaseString] ... ... <看更多>
hex to decimal c++ 在 Hex to Decimal Calculator | Number Converter 的相關結果
Decimal Binary Hex Octal
2 10 2 2
3 11 3 3
4 100 4 4 ... <看更多>
hex to decimal c++ 在 C Program to Convert Hexadecimal Number to Decimal ... 的相關結果
12AD in Hexadecimal is equivalent to 4781 in Decimal number system. Algorithm to convert Hexadecimal to Decimal number. Hexadecimal digits includes characters ... ... <看更多>
hex to decimal c++ 在 Conversion between hexadecimal, decimal, and string 的相關結果
%c characters are output to the buffer without conversion. %d integer is converted to decimal. %f precision numbers are converted to floating point numbers. %o ... ... <看更多>
hex to decimal c++ 在 Convert the following hexadecimal numbers to decimal a A6 b ... 的相關結果
Convert the following hexadecimal numbers to decimal: (a) A6 (b) A13B (c) 3A5. ... Equivalent decimal number = 11 + 48 + 256 + 40960 = 41275. ... <看更多>
hex to decimal c++ 在 What is Hexadecimal To Decimal (X2D)? - Definition from 的相關結果
This definition explains the meaning of Hexadecimal To Decimal and why it matters. ... Decimal equivalent of "C" = (C) 12 x 16^2 = [3072] ... <看更多>
hex to decimal c++ 在 Hexadecimal to Decimal Conversion - x-engineer.org 的相關結果
Tutorial on how to convert a hexadecimal number (base 16) in a decimal number (base 10) ... Hexadecimal, F, A, C, E. Decimal, 15, 10, 12, 14 ... ... <看更多>
hex to decimal c++ 在 Compiler User Guide: Limits for integral numbers - Keil 的相關結果
Constants are interpreted differently in decimal and hexadecimal/octal. See the appropriate C or C++ standard, or any of the recommended C and C++ textbooks ... ... <看更多>
hex to decimal c++ 在 Hex to Decimal Converter - Prepostseo 的相關結果
Let's try to understand how: First, we converted all of our hex numbers into their decimal equivalents. C is equal to the decimal 12 (see table above) and 9 ... ... <看更多>
hex to decimal c++ 在 Conversion of hex to decimal - C Board 的相關結果
I have been trying to convert hexadecimal to decimal value just i need to get 5 input hex values and store it in an array and convert them ... ... <看更多>
hex to decimal c++ 在 [Solved] Convert hex number to decimal. (0101)16 - Testbook ... 的相關結果
Concept:- Hexadecimal number system: Hexadecimal is a radix-16 or base-16 number system, while in our day-to-day life in computers and digital logic we us. ... <看更多>
hex to decimal c++ 在 Hexadecimal Numbers - Electronics Tutorials 的相關結果
For example, if we write 10 in hexadecimal, do we mean the decimal number ten, ... are replaced with capital letters of A, B, C, D, E and F respectively. ... <看更多>
hex to decimal c++ 在 converting hex to decimal - c++ - DaniWeb 的相關結果
You can make use of the stringstream class from c++ (Click Here). Here's a small example: int a = 15; int b = 0xF; int c; cout << a << endl; ... ... <看更多>
hex to decimal c++ 在 How to parse Hex to Decimal in C? | AVR Freaks 的相關結果
Hello everybody! I´m having a hard time trying to crack some code for a this conversion but looks like I´m too rusty to solve this puzzle. ... <看更多>
hex to decimal c++ 在 C Program to convert a decimal number to a hexadecimal ... 的相關結果
To convert a decimal number to a hexadecimal number, we follow these steps: Step 1: Divide the decimal number continuously by 16 and write the ... ... <看更多>
hex to decimal c++ 在 C program to convert Hexadecimal to Decimal number system 的相關結果
Computer Programming - C Programming Language - C program to convert Hexadecimal to Decimal number system sample code - Build a C Program with C Code ... ... <看更多>
hex to decimal c++ 在 Decimal to Hex and Hex to Decimal Conversion 的相關結果
This Article is about Decimal to Hex Conversion and Vice-versa. ... The values positioning must be starting from C. 6 5 C. 16^2 16^1 16^0. ... <看更多>
hex to decimal c++ 在 4 Best Ways to Convert Hexadecimal to Decimal in Python 的相關結果
What is hexadecimal to decimal conversion in Python? ... Then, we will take three variables, c, count, and 'i', all equal to 0. ... <看更多>
hex to decimal c++ 在 Hexadecimal Number System- Hex to Decimal & Binary ... 的相關結果
Unlike decimal numbering system, this system uses digits 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E &F to represent a number. Digits A,B,C,D,E&F represents ... ... <看更多>
hex to decimal c++ 在 Hex 0 1 2 3 4 5 6 7 8 9 A B C D E F Decimal 0 1 2 3 4 5 6 7 8 9 ... 的相關結果
Binary, Hex and Decimal Numbers (4-bit representation). Hex ... C. D. E. F. Decimal ... Decimal. Hex. Convert Unsigned Decimal to Hex. ... <看更多>
hex to decimal c++ 在 Solved Problem 2 Write a Hexadecimal to Decimal converter. 的相關結果
Here is the solution to above problem in C. Please read the code comments for more information and Please give a thumbs up if you like the solution C CODE ... ... <看更多>
hex to decimal c++ 在 hexdec - Manual - PHP 的相關結果
hexdec — Hexadecimal to decimal ... Returns the decimal equivalent of the hexadecimal number represented by the hex_string ... function rgb2hex2rgb($c){ ... <看更多>
hex to decimal c++ 在 Binary, Octal and Hexadecimal Numbers - The Engineering ... 的相關結果
Decimal, binary, octal and hexadecimal numbers. ... Hexadecimal to Decimal Conversion ... 'A' corresponds to 10 in the denary system, B to 11, C to 12 . ... <看更多>
hex to decimal c++ 在 What is Hexadecimal Numbers System? Table, Conversions 的相關結果
Hexadecimal number system can be converted to an equivalent decimal number, ... B, C, D and E. Let us see the conversion of 'hex' into other number systems. ... <看更多>
hex to decimal c++ 在 ASCII Character Chart with Decimal, Binary and Hexadecimal ... 的相關結果
Character Name. Char. Code. Decimal. Binary. Hex. Null. NUL. Ctrl @. 0. 00000000 ... Ctrl C. 3. 00000011 ... Pound/Number Sign. #. Shift 3. 35. 00100011. ... <看更多>
hex to decimal c++ 在 Numerical Bases - C++ Tutorials 的相關結果
In C++, hexadecimal numbers are preceded by 0x (zero, x). Once again we can use the same method to translate a number from a base to another one: Binary ... ... <看更多>
hex to decimal c++ 在 Hexadecimal - an overview | ScienceDirect Topics 的相關結果
Recall, 10 decimal is represented by Ah hexadecimal. ... the display in the required pattern for each hex digit: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, b, C, ... ... <看更多>
hex to decimal c++ 在 Hex to Decimal Converter - Schoolelectronic - 的相關結果
Hexadecimal to Decimal number conversion step-by-step procedure ... How to Convert Hex to Decimal ... A x 16 3 + B x 16 2 + C x 16 1 + 0 x 16 0 ... <看更多>
hex to decimal c++ 在 Convert large hex number to decimal - EEVblog 的相關結果
C has standard functions like itoa and ltoa to convert integer, long integer and so on to ASCII representation. ... <看更多>
hex to decimal c++ 在 Which is faster, a program written in decimal, hexa ... - Sololearn 的相關結果
If decimal faster than hexadecimal, How to prove it? This question related to: ... ____ ¹ https://en.cppreference.com/w/c/types/limits. ... <看更多>
hex to decimal c++ 在 Hex to Decimal Converter - Asknumbers 的相關結果
Hexadecimal to decimal number (base-16 to base-10) step by step conversion and table. ... hex, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F. ... <看更多>
hex to decimal c++ 在 Input A Hex Digit And Return Its' Decimal Equivalent As Output 的相關結果
Enter a hex digit: C In decimal it is: 12. Do you want to continue? n. Note, all valid alphabetic input will be in capitals. ... <看更多>
hex to decimal c++ 在 Decimal to Hexadecimal Converter - Kalkulaator.ee 的相關結果
In mathematics and digital electronics, a hexadecimal number (also base 16, or hex) is a number expressed in the hexadeximal numeral system - a positional ... ... <看更多>
hex to decimal c++ 在 From Hex to Text | C For Dummies Blog 的相關結果
Do you speak hex? As a programmer, do you look at 0xF and see 1111 in binary? Do you see 15 decimal? What about the ASCII code? ... <看更多>
hex to decimal c++ 在 Hex to Decimal Converter to Convert Base 16 to Base 10 的相關結果
Instantly convert hexadecimal numbers to decimal numbers, plus see the dynamically generated ... Base 16 : 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F. ... <看更多>
hex to decimal c++ 在 The Hexadecimal Number System and Memory Addressing 的相關結果
Hex numbers are often followed by a lowercase h to indicate they are in hex (example: 78h). Table C-1. Computer terminology. Computers convert binary data into ... ... <看更多>
hex to decimal c++ 在 0x8 to decimal 的相關結果
Ox503c - Ox40 = C. 34 dec to hex = 0x22 hex. c# . This code counts as a normal binary number from 0 to 9, but numbers from ten (1010) to fifteen (1111) are ... ... <看更多>
hex to decimal c++ 在 The Hexadecimal Number System Explained - freeCodeCamp 的相關結果
Hexadecimal numbers, often shortened to “hex numbers” or “hex”, ... alphabet to represent the values 10 through 15 (E.G: A, B, C, D, E, F). ... <看更多>
hex to decimal c++ 在 convert hex string to decimal - C / C++ - Bytes Developer ... 的相關結果
If I have string like "0D76" for example, it is actually a 0x0D76 in hex format. How can I convert the hex string 0D76 into decimal value ? ... <看更多>
hex to decimal c++ 在 Hex to Decimal converter - ConvZone 的相關結果
Convert multiple values at once between Hex (hexadecimal) and Decimal numeral systems. Our site has an easy to use online tool to convert your data. ... <看更多>
hex to decimal c++ 在 Hexadecimal to Decimal Converter - Binary 的相關結果
Dec Hex Binary Dec Hex Binary
0 00 0000 0000 128 80 1000 0000
1 01 0000 0001 129 81 1000 0001
2 02 0000 0010 130 82 1000 0010 ... <看更多>
hex to decimal c++ 在 CONVERTING DECIMAL TO HEXADECIMAL - permadi.com 的相關結果
Number conversion tutorial, guide for web developers. ... HEXADECIMAL, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F. DECIMAL, 0, 1, 2 ... ... <看更多>
hex to decimal c++ 在 Linux / UNIX: Convert Hexadecimal to Decimal Number 的相關結果
How do I convert hex number to decimal number using a shell script ... B, C, D, E, F (or a through f) to represent values ten to fifteen. ... <看更多>
hex to decimal c++ 在 C Language: strtol function (Convert String to Long Integer) 的相關結果
If base is zero, the number is assumed to be decimal unless the converted number starts with O (for Octal), Ox (for hex) or OX (for hex). Returns. The strtol ... ... <看更多>
hex to decimal c++ 在 Convert hex to decimal 的相關結果
This system uses the symbols 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9 of the decimal system in addition to the letters A, B, C, D, E and F. The Hexadecimal System ... ... <看更多>
hex to decimal c++ 在 Hexadecimal to Decimal Converter - TutorialsAndYou 的相關結果
A simple tool designed to convert hexadecimal number to decimal value and explains ... B, C, D, E, and F, representing decimal numbers 10, 11, 12, 13, 14, ... ... <看更多>
hex to decimal c++ 在 Best Hex to Decimal Converter Online - Code Beautify 的相關結果
Simple and Easy to use HexaDecimal to Decimal tool. ... Hex to Decimal Converter is easy to use tool to convert Hex to Decimal number. ... <看更多>
hex to decimal c++ 在 C Program to Convert Decimal Number to Hexadecimal Number 的相關結果
scanf("%ld",&num);. Now after accepting the number we are calling the function which can evaluate equivalent hexadecimal number. ... <看更多>
hex to decimal c++ 在 How to convert Hexadecimal value in CString to Decimal value? 的相關結果
you can use the strtol[^] function. Specify the base as 16 for hex. C++. Copy Code. CString myString = "FA"; //0xFA = 250 long myNumber ... ... <看更多>
hex to decimal c++ 在 Online Hex to String Converter Tool 的相關結果
The 16 symbols that the hexadecimal system uses are: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E and F. So instead of a decimal symbol of 10, hexadecimal uses an A, ... ... <看更多>
hex to decimal c++ 在 C program to convert Hexadecimal to Decimal - Aticleworld 的相關結果
To convert hex to decimal, we need to extract the digits of a given hexadecimal number from the buffer. At the time of extracting digits from the hexadecimal ... ... <看更多>