mron@lemmy.world to Programming@programming.devEnglish · 1 year agoBest way to check supported Unicode version?message-squaremessage-square8fedilinkarrow-up16arrow-down10file-text
arrow-up16arrow-down1message-squareBest way to check supported Unicode version?mron@lemmy.world to Programming@programming.devEnglish · 1 year agomessage-square8fedilinkfile-text
Is there an elegant, cross-platform, way to determine the latest Unicode version that a machine supports?
minus-square0x0@programming.devlinkfedilinkEnglisharrow-up2·1 year agoWhich programming language do you have in mind?
minus-squaremron@lemmy.worldOPlinkfedilinkEnglisharrow-up1·1 year agoI’m flexible tbh, but my initial checks with a Python approach led me to unicodedata.unidata_version, which is correct for Python support but not system support.
Which programming language do you have in mind?
I’m flexible tbh, but my initial checks with a Python approach led me to
unicodedata.unidata_version
, which is correct for Python support but not system support.