Search

'JS'에 해당되는 글 3건

  1. 2017.10.10 인코딩, 디코딩

인코딩, 디코딩

it/JavaScript 2017. 10. 10. 14:33 Posted by 하얀나다

1바이트 문자는 %XX  2바이트 문자는 %uXXXX


escape();

알파벳 숫자 특수문자(@,*,-,_,+,.,/) 제외 모든 문자 인코딩


encodeURI(uri);

(:, ;, /, =, ?, &)추가


encodeURIComponent(uriComponent);

알파벳 숫자 제외한 모든 걸 인코딩


unescape();


decodeURI(encodedURI);


decodeURIComponent(encodedURI);



'it > JavaScript' 카테고리의 다른 글

Javascript es6 Template Literal  (0) 2020.12.09
JavaScript es6 Arrow function  (0) 2020.12.09
비교 연산자 2개 이상 쓰지 않는 이유.  (0) 2017.10.10
while 문 시간으로..  (0) 2017.10.10
IE 버전 구별.  (0) 2017.09.01