this post was submitted on 02 Jul 2023
7 points (100.0% liked)

Programming

17123 readers
105 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

Is there an elegant, cross-platform, way to determine the latest Unicode version that a machine supports?

you are viewing a single comment's thread
view the rest of the comments
[–] colonial 1 points 1 year ago* (last edited 1 year ago)

I don't know of any existing library, but I think it should be relatively easy to wrap existing APIs for all the major operating systems (locale on Linux, some PowerShell voodoo on Windows...) behind a single call, and just use runtime checks/conditional compilation to use the right one behind the scenes.

Edit: wait, I confused Unicode version for encoding type (8/16/32). Sorry, that's my bad.