Hi, if you want "literally" the four character & n b s p ; in the output, you must do this:
<h:outputText value=”&nbsp;” escape=”false”/> the &...; entities are read by xml parser and never seen by facelets, moreover the xml parser itself has no notion of the entity and will fail to parse it However, non breakable space is only a special character, that is also reachable via it's unicode value, so you can simply write   instead of all the awfull outputText thingy. It will not issue a in the output html but will issue a non visual character having same behaviour. En l'instant précis du 21/03/07 14:54, Charbel Abdul-Massih s'exprimait en ces termes: > > I am using JSF with facelets… > > I just need to output a space character “ ” in my page… > > > > For some reason, it is not working for me… > > > > I tried <h:outputText value=” ” escape=”false”/> > > > > That’s not working… > > > > Can you please help!!!!!! >

