Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Windows 용 iconv 는 오래 되서 -o 옵션을 지원하지 않는다. -o 대신 파이프로 출력을 리다이렉션하자.

iconv -f CP949 -t UTF-8 input.txt > output.txt

 

C 언어에서 사용

glibc 안에 iconv 가 구현되어 있으므로 C 언어에서 사용할 수 있다.

Expand

 

PHP 에서 사용

PHP 에는 libiconv 가 binding 되어 있으므로 사용할 수 있다. (참고: http://php.net/manual/en/function.iconv.php)

...