java allows you to draw single macrons, that is, String s = "a\u0305c\u0305" :
It is necessary to make an inversion (in fact - draw a line) above the line containing the other macros
how to do it if they simply stack with "a\u0305\u0305" ?
java allows you to draw single macrons, that is, String s = "a\u0305c\u0305" :
It is necessary to make an inversion (in fact - draw a line) above the line containing the other macros
how to do it if they simply stack with "a\u0305\u0305" ?
Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .
Something like this
System.out.println("1"+ "\u0305"); Only "output device" must understand unicode.
Here is a useful link
https://en.wikipedia.org/wiki/Overline
Or was the question about something else?
Source: https://ru.stackoverflow.com/questions/545160/
All Articles