인코딩, 디코딩 - 인코딩, 디코딩과 관련된 내장 함수 3종류, escape() / unescape(),encodeURI(uri) / decodeURI(encodedURI), encodeURIComponent(uriComponent) / decodeURIComponent(encodedURI)
CODEDRAGON ㆍDevelopment/JavaScript, jQuery, ...
반응형
인코딩, 디코딩
구분 | 용어 설명 |
인코딩(encoding) | 문자를 컴퓨터에서 저장하거나 통신에 사용할 목적으로 부호화한 것 |
디코딩(decoding) | 부호화된 문자를 원래대로 되돌리는 것 |
인코딩, 디코딩과 관련된 내장 함수 3종류
인코딩을 할 때, 상황에 따라 세 가지 함수 중에서 가장 적당한 것을 선택하여 사용하면 됩니다.
- escape() / unescape()
- encodeURI(uri) / decodeURI(encodedURI)
- encodeURIComponent(uriComponent) / decodeURIComponent(encodedURI)
내장함수 | 설명 |
escape() |
|
unescape() |
|
encodeURI(uri) |
|
decodeURI(encodedURI) |
|
encodeURIComponent(uriComponent) |
|
decodeURIComponent(encodedURI) |
|
'Development > JavaScript, jQuery, ...' 카테고리의 다른 글
AngularJS (0) | 2017.04.02 |
---|---|
익명 함수 생성 (함수 표현식 방식; function expression) (0) | 2017.03.28 |
Awesome JavaScript - 자바 스크립트 기술에 대한 모든 것 모아 놓은 곳 (0) | 2017.03.04 |
웹 브라우저 버전과 종류 확인 라이브러리 (0) | 2017.02.27 |
자바스크립트 API 문서 - JavaScript 언어 참조 – MSDN, JavaScript 재입문하기 (JS 튜토리얼) (0) | 2017.02.22 |