← Back to List
10940번: BASE16 인코딩 ↗
Solutions
Python 3
73 B | 73 chars
import base64 print(str(base64.b16encode(input().encode('utf-8')))[2:-1])