in reply to Re^3: Print unicode strings to pdf
in thread Print unicode strings to pdf
I want to display the hex_code as an actual symbol in an input field. But what I see in the input field is '\x{a5}' and not the symbol. In Javascript when I set a variable like this:{ "hex_code":"\\x{a5}" }
The symbol gets displayed in the input field.var hex_code = '\x{a5}'; document.getElementById('some_field').value = hex_code;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Print unicode strings to pdf
by Corion (Patriarch) on Mar 27, 2018 at 07:37 UTC | |
by Anonymous Monk on Mar 27, 2018 at 08:42 UTC | |
by Corion (Patriarch) on Mar 27, 2018 at 09:00 UTC |