28.How to convert Decimal to Hex.
💡Code:
public class DecimalToHexConversion7078 {
public static void main(String[] args) {
// Example decimal value
int decimalValue = 26;
// Convert decimal to hex
String hexString = Integer.toHexString(decimalValue);
// Print the converted hexadecimal value
System.out.println("Converted hexadecimal value: " + hexString.toUpperCase());
}
}
📸Output :