Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Display Numeric ASCII Value of Letter

$
0
0

Summary: Use Windows PowerShell to display the numeric ASCII value of a letter.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find the numeric ASCII value associated with a letter?

Hey, Scripting Guy! Answer Use [byte] and [char] together. The following example will display the numeric ASCII value of the capital letter A:

[byte][char]'A'


Viewing all articles
Browse latest Browse all 3333

Trending Articles