【方案1】BAT调用debug命令- @echo off
- rem 字符串转换ASCII码
- more +4 %~s0|debug|find ":0100"
- pause&exit
- A100
- DB 'bbs.bathome.net'
-
- D100
- q
复制代码 【方案2】BAT调用PowerShell- @echo off
- REM 十进制
- powershell -c "[System.Text.Encoding]::ASCII.GetBytes('bbs.bathome.net')"
- REM 十六进制
- powershell -c "[System.Text.Encoding]::ASCII.GetBytes('bbs.bathome.net') | ForEach-Object {[System.Convert]::ToString($_,16)}"
复制代码
|