Python 3.7.3에서 테스트된 URL 인코딩 및 디코딩 예제
from urllib import parse
# URL 인코딩
encoded_url = parse.quote('한글')
print(f"Encoded URL: {encoded_url}")
# URL 디코딩
decoded_url = parse.unquote('%EA%B5%AC%EA%B0%80%EC%9E%85%EC%9E%90%EB%B2%88%ED%98%B8')
print(f"Decoded URL: {decoded_url}")
출력 결과
Encoded URL: %ED%95%9C%EA%B8%80
Decoded URL: (구)가입자번호

가볍게 돌려 볼 수 있는 사이트
https://www.online-python.com/
Online Python - IDE, Editor, Compiler, Interpreter
Online Python IDE is a web-based tool powered by ACE code editor. This tool can be used to learn, build, run, test your python script. You can open the script from your local and continue to build using this IDE. Code and output can be downloaded to local.
www.online-python.com
'Programing' 카테고리의 다른 글
js 브라우저 언어 설정 확인하기 (0) | 2024.08.07 |
---|---|
claude.ai 야 테이블 표 디자인 좀 바꿔줘 봐봐 (0) | 2024.07.22 |
마크다운 이미지 5초만에 추가하기 (0) | 2024.06.17 |
구글 검색 노출을 위한 구글 서치 콘솔에서 색인 요청하기 (0) | 2024.05.10 |
자주 까먹는  & < > " 의미? (0) | 2024.04.29 |
Python 3.7.3에서 테스트된 URL 인코딩 및 디코딩 예제
from urllib import parse
# URL 인코딩
encoded_url = parse.quote('한글')
print(f"Encoded URL: {encoded_url}")
# URL 디코딩
decoded_url = parse.unquote('%EA%B5%AC%EA%B0%80%EC%9E%85%EC%9E%90%EB%B2%88%ED%98%B8')
print(f"Decoded URL: {decoded_url}")
출력 결과
Encoded URL: %ED%95%9C%EA%B8%80
Decoded URL: (구)가입자번호

가볍게 돌려 볼 수 있는 사이트
https://www.online-python.com/
Online Python - IDE, Editor, Compiler, Interpreter
Online Python IDE is a web-based tool powered by ACE code editor. This tool can be used to learn, build, run, test your python script. You can open the script from your local and continue to build using this IDE. Code and output can be downloaded to local.
www.online-python.com
'Programing' 카테고리의 다른 글
js 브라우저 언어 설정 확인하기 (0) | 2024.08.07 |
---|---|
claude.ai 야 테이블 표 디자인 좀 바꿔줘 봐봐 (0) | 2024.07.22 |
마크다운 이미지 5초만에 추가하기 (0) | 2024.06.17 |
구글 검색 노출을 위한 구글 서치 콘솔에서 색인 요청하기 (0) | 2024.05.10 |
자주 까먹는  & < > " 의미? (0) | 2024.04.29 |