Would you like to learn how to convert to hexadecimal using Powershell? In this tutorial, we are going to show you how to use Powershell to convert decimal numbers to hexadecimal on a computer running Windows.

• Windows 2012 R2
• Windows 2016
• Windows 2019
• Windows 2022
• Windows 10
• Windows 11

Equipment list

Here you can find the list of equipment used to create this tutorial.

This link will also show the software list used to create this tutorial.

Related tutorial - PowerShell

On this page, we offer quick access to a list of tutorials related to PowerShell.

Tutorial Powershell - Converting decimal numbers to hexadecimal

Start a Powershell command-line.

Start Powershell

Convert a decimal number to HEX.

Copy to Clipboard

Here is the command output:

Copy to Clipboard

Optionally, use lower case when converting to Hexadecimal.

Copy to Clipboard

Here is the command output:

Copy to Clipboard

There are multiple ways to convert decimal to hexadecimal using Powershell.

Copy to Clipboard

Here is the command output:

Copy to Clipboard

Specify the desired number of hexadecimal digits.

Copy to Clipboard

Here is the command output:

Copy to Clipboard

In our example, we converted the decimal number 43981 to the hexadecimal value ABCD.

Congratulations! You are able to convert decimal numbers to HEX.

Tutorial Powershell - Converting hexadecimal to decimal numbers

Start a Powershell command-line.

Start Powershell

Convert hexadecimal to decimal.

Copy to Clipboard

Here is the command output:

Copy to Clipboard

There are multiple ways to convert HEX to decimal using Powershell.

Copy to Clipboard

Here is the command output:

Copy to Clipboard

Convert hexadecimal to decimal using the 0X prefix.

Copy to Clipboard

Here is the command output:

Copy to Clipboard

In our example, we converted the hexadecimal value ABCDEF to the decimal number 11259375.

Congratulations! You are able to convert hexadecimal to decimal numbers.