├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE.txt ├── README.md ├── eslint.config.js ├── index.html ├── jest.config.js ├── media └── screenshot.png ├── package.json ├── public ├── _redirects └── images │ └── github-mark.svg ├── src ├── App.css ├── App.tsx ├── components │ ├── BitwiseControl.tsx │ ├── CodePointDisplay.tsx │ ├── Header.tsx │ ├── NotesPanel.tsx │ └── SingleByte.tsx ├── index.css ├── main.tsx ├── utf8 │ ├── unicode_table.json │ └── utf8.ts └── vite-env.d.ts ├── tests └── utf8.test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── utils ├── README.md └── generate_unicode_lookup.js └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/jest.config.js -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/images/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/public/images/github-mark.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/BitwiseControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/components/BitwiseControl.tsx -------------------------------------------------------------------------------- /src/components/CodePointDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/components/CodePointDisplay.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/NotesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/components/NotesPanel.tsx -------------------------------------------------------------------------------- /src/components/SingleByte.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/components/SingleByte.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/utf8/unicode_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/utf8/unicode_table.json -------------------------------------------------------------------------------- /src/utf8/utf8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/src/utf8/utf8.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tests/utf8.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/tests/utf8.test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/utils/README.md -------------------------------------------------------------------------------- /utils/generate_unicode_lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/utils/generate_unicode_lookup.js -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishnuharidas/utf8-playground/HEAD/vite.config.ts --------------------------------------------------------------------------------