■ str 클래스의 encode 메소드를 사용해 UTF-8 문자열 바이트들을 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
sourceString = "가" targetBytes = sourceString.encode("utf-8") print(targetBytes) """ b'\xea\xb0\x80' """ print(type(targetBytes)) """ <class 'bytes'> """ |