仅使用本机Windows 7工具获取char的HEX代码


1

我有一个文本文件,其中有一个不可打印的奇怪字符。我想知道它的HEX代码。

如果不安装HexView或编程等软件,我怎么知道呢?


1
您已经通过不允许第三方软件和编程来消除所有可能的解决方案。
Ramhound 2014年

Answers:


3

PowerShell 2.0本身安装在任何Windows 7系统上,因此它是可行的。
不幸的是,你必须做一些编程。

$strPath = "D:\test.txt"
Get-Content $strPath -Encoding Byte | ForEach-Object {        
        $ascii = [CHAR][BYTE]$_
        $hex = "{0:X2} " -f $_
        $dez = "{0:d} " -f $_
        write-host $ascii, $hex, $dez
    }

输出(在PowerShell ISE中)

在此输入图像描述

资源

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.