├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 0-new-issue.yml │ ├── 1-new-feature.yml │ └── config.yml └── workflows │ └── build.yml ├── .gitignore ├── .htmlcheckerfilter ├── .pr-preview.json ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── encoding.bs ├── encodings.json ├── index-big5.txt ├── index-euc-kr.txt ├── index-gb18030-ranges.txt ├── index-gb18030.txt ├── index-ibm866.txt ├── index-iso-2022-jp-katakana.txt ├── index-iso-8859-10.txt ├── index-iso-8859-13.txt ├── index-iso-8859-14.txt ├── index-iso-8859-15.txt ├── index-iso-8859-16.txt ├── index-iso-8859-2.txt ├── index-iso-8859-3.txt ├── index-iso-8859-4.txt ├── index-iso-8859-5.txt ├── index-iso-8859-6.txt ├── index-iso-8859-7.txt ├── index-iso-8859-8.txt ├── index-jis0208.txt ├── index-jis0212.txt ├── index-koi8-r.txt ├── index-koi8-u.txt ├── index-macintosh.txt ├── index-windows-1250.txt ├── index-windows-1251.txt ├── index-windows-1252.txt ├── index-windows-1253.txt ├── index-windows-1254.txt ├── index-windows-1255.txt ├── index-windows-1256.txt ├── index-windows-1257.txt ├── index-windows-1258.txt ├── index-windows-874.txt ├── index-x-mac-cyrillic.txt ├── indexes.json ├── review-drafts ├── 2018-06.bs ├── 2018-12.bs ├── 2019-06.bs ├── 2019-12.bs ├── 2020-06.bs ├── 2020-12.bs ├── 2021-06.bs ├── 2021-12.bs ├── 2022-06.bs ├── 2023-06.bs ├── 2024-12.bs └── 2025-06.bs ├── tools-clean.py ├── tools-index.py ├── tools-label-table.py ├── visualization-colors.css ├── visualization.css └── visualize.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/0-new-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/.github/ISSUE_TEMPLATE/0-new-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-new-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/.github/ISSUE_TEMPLATE/1-new-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/.gitignore -------------------------------------------------------------------------------- /.htmlcheckerfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/.htmlcheckerfilter -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/README.md -------------------------------------------------------------------------------- /encoding.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/encoding.bs -------------------------------------------------------------------------------- /encodings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/encodings.json -------------------------------------------------------------------------------- /index-big5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-big5.txt -------------------------------------------------------------------------------- /index-euc-kr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-euc-kr.txt -------------------------------------------------------------------------------- /index-gb18030-ranges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-gb18030-ranges.txt -------------------------------------------------------------------------------- /index-gb18030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-gb18030.txt -------------------------------------------------------------------------------- /index-ibm866.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-ibm866.txt -------------------------------------------------------------------------------- /index-iso-2022-jp-katakana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-2022-jp-katakana.txt -------------------------------------------------------------------------------- /index-iso-8859-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-10.txt -------------------------------------------------------------------------------- /index-iso-8859-13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-13.txt -------------------------------------------------------------------------------- /index-iso-8859-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-14.txt -------------------------------------------------------------------------------- /index-iso-8859-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-15.txt -------------------------------------------------------------------------------- /index-iso-8859-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-16.txt -------------------------------------------------------------------------------- /index-iso-8859-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-2.txt -------------------------------------------------------------------------------- /index-iso-8859-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-3.txt -------------------------------------------------------------------------------- /index-iso-8859-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-4.txt -------------------------------------------------------------------------------- /index-iso-8859-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-5.txt -------------------------------------------------------------------------------- /index-iso-8859-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-6.txt -------------------------------------------------------------------------------- /index-iso-8859-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-7.txt -------------------------------------------------------------------------------- /index-iso-8859-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-iso-8859-8.txt -------------------------------------------------------------------------------- /index-jis0208.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-jis0208.txt -------------------------------------------------------------------------------- /index-jis0212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-jis0212.txt -------------------------------------------------------------------------------- /index-koi8-r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-koi8-r.txt -------------------------------------------------------------------------------- /index-koi8-u.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-koi8-u.txt -------------------------------------------------------------------------------- /index-macintosh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-macintosh.txt -------------------------------------------------------------------------------- /index-windows-1250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-1250.txt -------------------------------------------------------------------------------- /index-windows-1251.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-1251.txt -------------------------------------------------------------------------------- /index-windows-1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-1252.txt -------------------------------------------------------------------------------- /index-windows-1253.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-1253.txt -------------------------------------------------------------------------------- /index-windows-1254.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-1254.txt -------------------------------------------------------------------------------- /index-windows-1255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-1255.txt -------------------------------------------------------------------------------- /index-windows-1256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-1256.txt -------------------------------------------------------------------------------- /index-windows-1257.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-1257.txt -------------------------------------------------------------------------------- /index-windows-1258.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-1258.txt -------------------------------------------------------------------------------- /index-windows-874.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-windows-874.txt -------------------------------------------------------------------------------- /index-x-mac-cyrillic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/index-x-mac-cyrillic.txt -------------------------------------------------------------------------------- /indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/indexes.json -------------------------------------------------------------------------------- /review-drafts/2018-06.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2018-06.bs -------------------------------------------------------------------------------- /review-drafts/2018-12.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2018-12.bs -------------------------------------------------------------------------------- /review-drafts/2019-06.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2019-06.bs -------------------------------------------------------------------------------- /review-drafts/2019-12.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2019-12.bs -------------------------------------------------------------------------------- /review-drafts/2020-06.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2020-06.bs -------------------------------------------------------------------------------- /review-drafts/2020-12.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2020-12.bs -------------------------------------------------------------------------------- /review-drafts/2021-06.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2021-06.bs -------------------------------------------------------------------------------- /review-drafts/2021-12.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2021-12.bs -------------------------------------------------------------------------------- /review-drafts/2022-06.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2022-06.bs -------------------------------------------------------------------------------- /review-drafts/2023-06.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2023-06.bs -------------------------------------------------------------------------------- /review-drafts/2024-12.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2024-12.bs -------------------------------------------------------------------------------- /review-drafts/2025-06.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/review-drafts/2025-06.bs -------------------------------------------------------------------------------- /tools-clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/tools-clean.py -------------------------------------------------------------------------------- /tools-index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/tools-index.py -------------------------------------------------------------------------------- /tools-label-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/tools-label-table.py -------------------------------------------------------------------------------- /visualization-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/visualization-colors.css -------------------------------------------------------------------------------- /visualization.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/visualization.css -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/encoding/HEAD/visualize.py --------------------------------------------------------------------------------