vim을 사용하면 문자에 커서를두고 ga
(일반 모드에서)을 사용하여 10 진수, 16 진수 및 8 진수로 ASCII 값을 인쇄 할 수 있습니다. :help ga
에서
: 예를 들어
:as[cii] or *ga* *:as* *:ascii*
ga Print the ascii value of the character under the
cursor in decimal, hexadecimal and octal. For
example, when the cursor is on a 'R':
<R> 82, Hex 52, Octal 122 ~
When the character is a non-standard ASCII character,
but printable according to the 'isprint' option, the
non-printable version is also given. When the
character is larger than 127, the <M-x> form is also
printed. For example:
<~A> <M-^A> 129, Hex 81, Octal 201 ~
<p> <|~> <M-~> 254, Hex fe, Octal 376 ~
(where <p> is a special character)
The <Nul> character in a file is stored internally as
<NL>, but it will be shown as:
<^@> 0, Hex 00, Octal 000 ~
If the character has composing characters these are
also shown. The value of 'maxcombine' doesn't matter.
Mnemonic: Get ASCII value.
, a
쇼에 문자로 ga
를 사용하여 :
<a> 97, Hex 61, Octal 141
커서를 문자로 이동하고 화면 하단에이 문자에 대한 정보를 표시하려면 'ga'(일반 모드에서)를 입력하십시오. – Marth
출력 결과는 '< > 160, Hex 00a0, Octal 240'입니다. 그것이 [비 분리 공간] 인 것처럼 보입니다 (https://en.wikipedia.org/wiki/Non-breaking_space). – JJD
의견을 "전체"답변으로 자유롭게 변환하여 답변 플래그를 부여 할 수 있습니다. – JJD