null Itineario - Monte do Facho

An error occurred while processing the template.
Failed to "?eval" string with this error:

---begin-message---
Syntax error in ?eval-ed string in line 1, column 119:
Lexical error: encountered "u" (117), after "\"Costa da Vela \\".
---end-message---

The failing expression:
==> cur_ContenidoWeb2742.getData()?eval  [in template "20097#20123#64256" at line 62, column 69]

----
FTL stack trace ("~" means nesting-related):
	- Failed at: cur_webContent_Itinerario = cur_Conte...  [in template "20097#20123#64256" at line 62, column 41]
----
1<#assign  
2    JournalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")     
3
4 
5<div class="cabeceraSimple conocer"> 
6     
7    <h2>${Titulo.getData()}</h2> 
8    <p>${Subtitulo.getData()}</p> 
9 
10 
11 
12</div> 
13 
14<div class="itinerario home cuerpo"> 
15    <div class="row"> 
16     
17        <div class="col-md-6"> 
18        <#if Punto.getSiblings()?has_content> 
19	<#list Punto.getSiblings() as cur_Punto> 
20	 
21	 
22	 
23	<#if cur_Punto?index == 0> 
24  	<details open> 
25 
26<#else> 
27	<details> 
28 
29</#if> 
30 
31	 
32	 
33  <summary>${cur_Punto.getData()}</summary> 
34	${cur_Punto.CuerpoPunto.getData()} 
35</details> 
36			 
37 
38	 
39	 
40		 
41	</#list> 
42</#if> 
43        </div> 
44     
45     
46        <div class="col-md-6"> 
47            
48           <img src="${ImagenItinerario.getData()}" class="imagenItinerario" alt="" /> 
49             
50          <div class="noTePierdas"> 
51           
52           
53          <h2>¡Lo que no te puedes perder!</h2> 
54           
55           
56           
57          <#if ContenidoWeb2742.getSiblings()?has_content> 
58	<#list ContenidoWeb2742.getSiblings() as cur_ContenidoWeb2742> 
59 
60		 
61			<#assign  
62					cur_webContent_Itinerario = cur_ContenidoWeb2742.getData()?eval 
63					cur_webContent_classPK = cur_webContent_Itinerario.classPK 
64					article = JournalArticleLocalService.getLatestArticle(cur_webContent_classPK?number) 
65					article_id = article.articleId 
66
67 
68		        <@liferay_journal["journal-article"] 
69						articleId=article_id 
70						groupId=groupId 
71                        ddmTemplateKey="77942" 
72					/> 
73 
74		 
75		 
76	</#list> 
77</#if> 
78           
79           
80           
81           
82           
83           
84           
85          </div>   
86        </div> 
87 
88     
89    </div> 
90 
91 
92</div>