https://github.com/redstonecraftgg/json-escape
An unicode escape sequence encoder/decoder for JSON file. Compatible with Minecraft Bedrock JSON UI.
https://github.com/redstonecraftgg/json-escape
Last synced: 2 months ago
JSON representation
An unicode escape sequence encoder/decoder for JSON file. Compatible with Minecraft Bedrock JSON UI.
- Host: GitHub
- URL: https://github.com/redstonecraftgg/json-escape
- Owner: RedStoneCraftGG
- License: mit
- Created: 2025-03-21T10:51:04.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-21T11:28:20.000Z (2 months ago)
- Last Synced: 2025-03-21T12:28:44.258Z (2 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JSON-Escape
A Unicode escape sequence encoder/decoder for JSON files. Compatible with Minecraft Bedrock JSON UI.# Usage
## Python
```bash
py main.py
```Example
```bash
py main.py encode file_name.json output_name.json
```## GoLang
```bash
go run main.go -m -i -o
```Example
```bash
go run main.go -m e -i file_name.json -o output_name.json
```Known Issue (GoLang only): During encoding or decoding, the JSON data will be sorted alphabetically. However, all functions will remain fully operational.
## HTML (Web)
Simply open the HTML file in your browser.