함수 base16_encode()

Jmnote (토론 | 기여)님의 2022년 12월 11일 (일) 01:03 판 (→‎Python)

1 개요

함수 base16_encode()

2 Bash

echo -n 'hello world' | xxd -p
# 68656c6c6f20776f726c64
echo -n '★A가あ中' | xxd -p
# e2988541eab080e38182e4b8ad

3 Python

s = 'hello world'
print(''.join(f'{ord(c):x}' for c in s))
# 68656c6c6f20776f726c64
s = 'hello world'
print(''.join(hex(ord(c))[2:] for c in s))
# 68656c6c6f20776f726c64
s = 'hello world'
print(''.join('{:x}'.format(ord(c)) for c in s))
# 68656c6c6f20776f726c64

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}