I have a java project that builds a web page and I need to show ≈99%. I have tried a couple of things, and none of them seem to work. Any ideas what I'm doing wrong?
My project takes a template HTML file, reads it in with JSOUP, then replaces some numbers in the template and then writes that to a file.
Charcter.toString( (char) 257)
Character.toString("\u2248".toCharArray()[0])
Jsoup.parse("\u2248").text()
"&asymp" + "99%"
"≈" + "99%"
This is what I get back now.
<h3>≈99%</h3>