Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 718 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 718 Bytes

License: MIT

Character set detector library for the JVM — like vidoss/jchardet, but with a leading K.

Features

  • Plain ASCII detection.
  • UTF-8 detection (with and without BOM).
  • UTF-16 (BE, LE) detection (with and without BOM).
  • Chinese detection (GB 2312, GBK, GB 18030, Big5).
  • Mode Line based detection in source code files of known types, e.g.:
#!/usr/bin/env python3
# -*- coding: ISO-8859-15 -*-

print("Hello, World!")