number = 255 h = parseInt(number, 10).toString(16) // Result: "ff" // Add Padding h = h.padStart(6, "0") // Result: "0000ff"