user3181223
user3181223

Reputation:

Euro symbol is displayed as "?"

I am having issue in displaying the Euro symbol using <fmt:formatNumber type="currency"> for below code.

<fmt:formatNumber value="$l_thresholdValue}" minFractionDigits="0" type="currency" var="thresholdValue"/>

This code in working fine in other jsp page. I tried all the possible ways like saving the file in UTF-8 and including the encoding style <%@page contentType="text/html;charset=UTF-8"%> in jsp file.

Still euro symbol is displayed as "?"

Can anyone help me

Upvotes: 0

Views: 2447

Answers (1)

Raj
Raj

Reputation: 610

Better to use this:

<meta http-equiv="content-type" content="text/html; charset=iso-8859-15">

I Hope this will help you

Upvotes: 1

Related Questions