https://github.com/sunaoka/json-unescaped-unicode
Unescape Unicode-escaped JSON
https://github.com/sunaoka/json-unescaped-unicode
json unescape unicode visual-studio-code-extension
Last synced: 12 months ago
JSON representation
Unescape Unicode-escaped JSON
- Host: GitHub
- URL: https://github.com/sunaoka/json-unescaped-unicode
- Owner: sunaoka
- License: mit
- Created: 2023-05-29T01:26:42.000Z (about 3 years ago)
- Default Branch: develop
- Last Pushed: 2025-06-04T00:12:45.000Z (about 1 year ago)
- Last Synced: 2025-06-04T07:56:38.856Z (about 1 year ago)
- Topics: json, unescape, unicode, visual-studio-code-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=sunaoka.json-unescaped-unicode
- Size: 1.16 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# JSON Unescaped Unicode
[](https://marketplace.visualstudio.com/items?itemName=sunaoka.json-unescaped-unicode)
[](https://github.com/sunaoka/json-unescaped-unicode/actions/workflows/test.yml)
[](https://codecov.io/gh/sunaoka/json-unescaped-unicode)
----
Unescape Unicode Escape Sequences in JSON.
## Features

## From
```json
{
"hello": {
"English": "Hello",
"Japanese": "\u3053\u3093\u306b\u3061\u306f",
"Korean": "\uc548\ub155\ud558\uc138\uc694",
"Chinese": "\u4f60\u597d",
"Arabic": "\u0645\u0631\u062d\u0628\u0627",
"Hindi": "\u0928\u092e\u0938\u094d\u0924\u0947",
"Ukrainian": "\u041f\u0440\u0438\u0432\u0456\u0442"
}
}
```
## To
```json
{
"hello": {
"English": "Hello",
"Japanese": "こんにちは",
"Korean": "안녕하세요",
"Chinese": "你好",
"Arabic": "مرحبا",
"Hindi": "नमस्ते",
"Ukrainian": "Привіт"
}
}
```