diff --git a/html/modules/custom/ghi_content/src/Plugin/Block/Paragraph.php b/html/modules/custom/ghi_content/src/Plugin/Block/Paragraph.php
index 1c17c2c88..2341db0b9 100644
--- a/html/modules/custom/ghi_content/src/Plugin/Block/Paragraph.php
+++ b/html/modules/custom/ghi_content/src/Plugin/Block/Paragraph.php
@@ -681,8 +681,8 @@ private function renderDomNode(\DOMNode $node) {
// PHP DOMElement don't have a innerHTML property so this is the current way
// of getting it.
// @see https://bugs.php.net/bug.php?id=44762
- return implode('', array_map(function ($child) {
- return $child->ownerDocument->saveXML($child);
+ return implode('', array_map(function (\DOMNode $child) {
+ return mb_convert_encoding($child->ownerDocument->saveXML($child), 'ISO-8859-1');
}, iterator_to_array($node->childNodes)));
}