You are using some bizarre symbol ×
in literals like 0×FF14E7
. That's your \303
.
It is supposed to be 0xFF14E7
. Good old plain x
(or X
), not some weird ×
.
And why does your code begin with "up"? What is that "up" doing there?
You are using some bizarre symbol ×
in literals like 0×FF14E7
. That's your \303
.
It is supposed to be 0xFF14E7
. Good old plain x
(or X
), not some weird ×
.
And why does your code begin with "up"? What is that "up" doing there?