A sequence of Unicode characters inside double quotes.

Section: Primitive values

String value

json
json
"hello"
Explanation

Strings must use double quotes in standard JSON.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Primitive values
Number value
JSON supports integers and decimals.
OpenIn sheetjsonsame section
Boolean value
Booleans are lowercase `true` and `false`.
OpenIn sheetjsonsame section
Null value
Represents an explicit empty value.
OpenIn sheetjsonsame section
Boolean false vs null
These values are not interchangeable.
OpenIn sheetjsonsame section
Escape quotes inside strings
Use backslash to include literal double quotes.
OpenIn sheetjson2 tag match
Use escape sequences for control characters
Encode newlines and tabs inside strings.
OpenIn sheetjson2 tag match