• flynnguy@programming.dev
    link
    fedilink
    English
    arrow-up
    20
    ·
    edit-2
    1 year ago

    Oh boy, this article is 20 years old. Still relevant though so go read it if you still aren’t sure about Unicode!

  • lasagna@programming.dev
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 year ago

    I would take this with a grain of salt. None of the programming languages I have used require this level of in-depth knowledge. Certainly not modern C++.

    • Buttons@programming.devOP
      link
      fedilink
      English
      arrow-up
      3
      ·
      1 year ago

      It’s still true that if you have a bunch of bytes and don’t know their encoding, you don’t really know what characters you have.

    • klangcola@reddthat.com
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      It’s not so much about the programming language you use, it’s about what data you’re taking in, what you’re doing with it, and where you’re passing the data off to next.

      If everything is all the same encoding, or all your data is ANSI you never have to think about it. It’s only when your program runs across systems or regions things get screwed up