JSON Syntax
What is \u2019 in JSON?
\u2019 in JSON is a Unicode escape sequence representing the right single quotation mark, also called a curly apostrophe or smart quote. JSON uses \u followed by four hexadecimal digits to represent Unicode characters. This escape sequence is commonly encountered when JSON contains text from word processors that use smart quotes instead of straight quotes. For example, {"text": "don\u2019t"} displays as "don't". Most JSON parsers automatically convert these escape sequences to their actual characters when parsing. Use our JSON Formatter at jsonconsole.com/json-formatter to view JSON with Unicode escapes properly rendered, making text more readable. Other common Unicode escapes include \u201C and \u201D for curly double quotes. While JSON accepts these escape sequences, they can make raw JSON harder to read, though they ensure proper character representation across different systems and encodings.
Last updated: December 23, 2025
Related Questions
Can json have duplicate keys?
Learn whether JSON can have duplicate keys, what happens when they occur, and why you should avoid them for data integrity and predictability.
Can json use single quotes?
Find out if JSON can use single quotes. Learn about JSON's strict double-quote requirement and why it differs from JavaScript syntax.
Can json have comments?
Learn whether JSON supports comments and discover workarounds. Understand why standard JSON excludes comments and alternatives like JSON5.
Still have questions?
Can't find the answer you're looking for? Please reach out to our support team.