要使用Python獲取Unicode編碼,可以使用內置的`ord()`函數。`ord()`函數接受一個字符作為參數,并返回該字符的Unicode編碼值。例如:
```python
char = 'A'
unicode_value = ord(char)
print(unicode_value) # 輸出:65
```
你也可以使用`encode()`方法將字符串轉換為Unicode編碼的字節序列。例如:
```python
text = "Hello"
unicode_bytes = text.encode('utf-8')
print(unicode_bytes) # 輸出:b'Hello'
```
這樣就可以獲取字符串的Unicode編碼值了。