diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 1b767c89066c629d9d319b1fcd8b00c8fe57103b..a976e4fbc2c9826e2fc7a391622a542ef61b821e 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -8002,7 +8002,7 @@ static int transmit_response_with_auth(struct sip_pvt *p, const char *msg, const
 static int add_text(struct sip_request *req, const char *text)
 {
 	/* XXX Convert \n's to \r\n's XXX */
-	add_header(req, "Content-Type", "text/plain");
+	add_header(req, "Content-Type", "text/plain;charset=UTF-8");
 	add_header_contentLength(req, strlen(text));
 	add_line(req, text);
 	return 0;