getHttpResponse()->setContentType('text/plain', 'UTF-8'); $this->sendResponse(new \Nette\Application\Responses\TextResponse('Hello, World!')); } public function renderJson() { $this->sendJson(['message' => 'Hello, World!']); } }