¿Cómo convertir decimal a hexadecimal en JavaScript?

Dado un número y la tarea es convertir el número de decimal a hexadecimal. Esto se puede hacer usando el método toString() . Toma el parámetro que es la base de la string convertida. En este caso la base será 16.

Sintaxis:

decimalNumber.toString( radix )

    Parámetros: Acepta dos parámetros que se enumeran a continuación:

  • decimalNumber: contiene el número en formato decimal que debe convertirse.
  • base: contiene la base del sistema numérico en el que se convierte el número.

Ejemplo 1: Este ejemplo convierte 20 al sistema numérico hexadecimal.

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        How to convert decimal to
        hex in JavaScript ?
    </title>
</head> 
          
<body style = "text-align:center;"> 
      
    <h1 style = "color:green;" > 
        GeeksForGeeks 
    </h1> 
              
    <p id="up"></p>
      
    <button onclick="myGFG()"> 
        Convert to hex
    </button> 
      
    <p id="down" style="color: green"></p>
              
    <script> 
        var GFG_Var = 20;
        var up = document.getElementById("up");
        up.innerHTML = GFG_Var;
        var down = document.getElementById("down");
      
        function myGFG() {
            var GFG_Var2 = GFG_Var.toString(16); 
            down = document.getElementById("down");
            down.innerHTML = "hex of "+ GFG_Var
                    + " is = " + GFG_Var2;
        }
    </script> 
</body> 
  
</html>                                

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Ejemplo 2: Este ejemplo convierte un número 100 a su sistema numérico octal.

<!DOCTYPE html> 
<html> 
    <head> 
        <title> 
            Decimal to octal number 
            system in JavaScript
        </title>
    </head> 
          
    <body style = "text-align:center;"> 
      
        <h1 style = "color:green;" > 
            GeeksForGeeks 
        </h1> 
              
        <p id = "up"></p>
          
        <button onclick="myGFG()"> 
            Convert to octal
        </button> 
          
        <p id = "down" style="color: green"></p>
              
        <script> 
            var GFG_Var = 100;
            var up = document.getElementById("up");
            up.innerHTML = GFG_Var;
            var down = document.getElementById("down");
              
            function myGFG() {
                var GFG_Var2 = GFG_Var.toString(8); 
                down = document.getElementById("down");
                down.innerHTML = "octal of "+ GFG_Var 
                        + " is = " + GFG_Var2;
            }
        </script> 
    </body> 
</html>                            

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Publicación traducida automáticamente

Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *