Converting Base 10 to Base 16 Using Bitwise Operators : Number Data Type « Language Basics « JavaScript DHTML






Converting Base 10 to Base 16 Using Bitwise Operators

 

/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke 

ISBN: 067231763X
Publisher Sams CopyRight 2000

*/

<html>
<head>
  <title>JavaScript Unleashed</title>
</head>
<body>
  <script type="text/javascript">
  <!--
    // Declare variables
    var originalInt;
   
    // intValue can be any 8 bit value.    var intValue = 0xDC; 
    var controlValue = 0xF;
    var fourBitValue;
    var hexChar = "";
    var hexString = "";
   
    document.writeln("When displaying integers from memory,");
    document.writeln("JavaScript always uses their decimal ");
    document.writeln("equivalent: " + intValue);
    originalInt = intValue;
    fourBitValue =  controlValue & intValue;
    hexChar = (fourBitValue == 0x0) ? "0" : hexChar;
    hexChar = (fourBitValue == 0x1) ? "1" : hexChar;
    hexChar = (fourBitValue == 0x2) ? "2" : hexChar;
    hexChar = (fourBitValue == 0x3) ? "3" : hexChar;
    hexChar = (fourBitValue == 0x4) ? "4" : hexChar;
    hexChar = (fourBitValue == 0x5) ? "5" : hexChar;
    hexChar = (fourBitValue == 0x6) ? "6" : hexChar;
    hexChar = (fourBitValue == 0x7) ? "7" : hexChar;
    hexChar = (fourBitValue == 0x8) ? "8" : hexChar;
    hexChar = (fourBitValue == 0x9) ? "9" : hexChar;
    hexChar = (fourBitValue == 0xA) ? "A" : hexChar;
    hexChar = (fourBitValue == 0xB) ? "B" : hexChar;
    hexChar = (fourBitValue == 0xC) ? "C" : hexChar;
    hexChar = (fourBitValue == 0xD) ? "D" : hexChar;
    hexChar = (fourBitValue == 0xE) ? "E" : hexChar;
    hexChar = (fourBitValue == 0xF) ? "F" : hexChar;
   
    // Build hexString placing digits from right to left
    hexString = hexChar + hexString;
   
    // Shift intValue four bits right
    intValue = intValue >> 4;
   
    // Extract the next four bit value
    fourBitValue =  controlValue & intValue;
   
    // Find the matching hex value and assign its string
    // equivalent to hexChar.
    hexChar = (fourBitValue == 0x0) ? "0" : hexChar;
    hexChar = (fourBitValue == 0x1) ? "1" : hexChar;
    hexChar = (fourBitValue == 0x2) ? "2" : hexChar;

    hexChar = (fourBitValue == 0x3) ? "3" : hexChar;
    hexChar = (fourBitValue == 0x4) ? "4" : hexChar;
    hexChar = (fourBitValue == 0x5) ? "5" : hexChar;
    hexChar = (fourBitValue == 0x6) ? "6" : hexChar;
    hexChar = (fourBitValue == 0x7) ? "7" : hexChar;
    hexChar = (fourBitValue == 0x8) ? "8" : hexChar;
    hexChar = (fourBitValue == 0x9) ? "9" : hexChar;
    hexChar = (fourBitValue == 0xA) ? "A" : hexChar;
    hexChar = (fourBitValue == 0xB) ? "B" : hexChar;
    hexChar = (fourBitValue == 0xC) ? "C" : hexChar;
    hexChar = (fourBitValue == 0xD) ? "D" : hexChar;
    hexChar = (fourBitValue == 0xE) ? "E" : hexChar;
    hexChar = (fourBitValue == 0xF) ? "F" : hexChar;
    hexString = hexChar + hexString;
    document.write("<br>" + originalInt + " displayed in");
    document.write(" hexadecimal :");
    document.writeln(hexString);
    // end hiding -->
  </script>
</body>
</html>


           
         
  








Related examples in the same category

1.Define variables, assign values and output
2.Dividing by Zero
3.Add Four Numbers from an HTML Form (and Display the Results)
4.Add characters
5.Complex class to represent complex numbers
6.A Function That Returns the Sum of Three Numbers (Stripped-Down Version)
7. Concatenating Variables and Displaying the Value Contained
8.JavaScript Loan Calculator
9.Factorials
10.Converting a Number to a String
11.Creating Number Objects Rather than Performing String-to-Number Conversions
12.Using toString() with Radix Values
13.Using JavaScript Integers
14.Conversion of Logical Values to Numeric Values
15.Using Floating-Point Numbers
16.Automatic Conversion between Types
17.Explicit Conversion Functions
18.Date Object Calculations
19.Operator Precedence and Different Data Types
20.Number Calculation
21.Format a number
22.Format a number 2
23.Decimal to 2 Hex
24.Concatenate integer variable to a string variable