Got it... change the addText function in Section.php to:
public function addText($text, $styleFont = null, $styleParagraph = null) {
$givenText = $text;
$text = new PHPWord_Section_Text($givenText, $styleFont, $styleParagraph);
$this->_elementCollection[] = $text;
return $text;
}
I removed the utf8_encode function. Hope its of any help to someone...