Explore what CodeHS has to offer for districts, schools, and teachers.
Click on one of our programs below to get started coding in the sandbox!
View All
The `"` character. In many programming languages, Strings of text start and end with double quotes. JavaScript: ``` var name = "Karel"; ``` Java: ``` String name = "Karel"; ``` Python: ``` name = "Karel" ```