Ugh, json.dumps hs and special chars are the worst combo.
I ended up using `json.dumps(data, ensure_ascii=False, indent=2)` and it worked like a charm.
If you’re still stuck, maybe check your terminal/editor encoding? Sometimes that’s the real culprit.
I ended up using `json.dumps(data, ensure_ascii=False, indent=2)` and it worked like a charm.
If you’re still stuck, maybe check your terminal/editor encoding? Sometimes that’s the real culprit.
