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

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Language Basics » Number Data Type 
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
w_w___w_._ja_va___2__s__.c___o___m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.