Jump to content

C and UTF-8 support

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
denarced

denarced

    Programmer

  • Members
  • PipPipPipPip
  • 182 posts
okay
after coming to the conclusion that ICU pretty much sucks ..

What are the alternatives ?
I'd like to join the rest of you coders who somehow manage to use UTF-8 in your programs ..
There must be other libraries besides ICU .. what are they ?

#2
Aereshaa

Aereshaa

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 790 posts
I use a jumble of quick hacks, which I've put into functions. Eventually I'll need to sort it out, but an easy hack that I use the most is implementing an & escape like in html. In other words, printf(utf("&3042")); prints "あ".

#3
denarced

denarced

    Programmer

  • Members
  • PipPipPipPip
  • 182 posts

Aereshaa said:

I use a jumble of quick hacks, which I've put into functions. Eventually I'll need to sort it out, but an easy hack that I use the most is implementing an & escape like in html. In other words, printf(utf("&3042")); prints "あ".

hmm .. interesting .. thanks .. could be a useful piece of information some day ..