String like ``` str = """{"text": "\n"}""" ``` is parsed differently when reading to `JSON3.Object` vs `Dict`: ``` obj = JSON3.read(str) # throws `ArgumentError: encountered unescaped control character in json: '\n'` dict = JSON3.read(str, Dict) # no error ```