I'm facing a new issue for the first time. My jsp page is using bootstrap and everything displays correctly when I work locally with Netbeans and Apache Tomcat. However, when I upload it to the server, Turkish characters like İ and Ü appear as Ä instead.
Usually, I use this code to handle UTF-8 problems:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
request.setCharacterEncoding("UTF-8");
%>
Unfortunately, this solution is not working now. Has anyone encountered an error like this before?
Any suggestions on how I can resolve this issue?