I don't know how to generate Hex 0x83 from integer value in java. I need 0x83 for Cyrillic alphabet to send to my printer. When I create integer 131 and convert to hex I get three number 0x31 0x33 0x31. I need to get 0x83. Or how to generate (ѓ) in other variable type to get 0x83?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you are trying to convert integer 131 to a hex string, you can try
It will return "83" as String. |
|||
|
|
It should solve your problem. |
|||||||
|
|
Have you tried checking out the Java Integer API. Here are a couple of examples: |
|||
|
|
|
I don't see a problem, when converting:
returns 83. |
|||