Comment by qweqwe14

4 days ago

Just use the C.UTF-8 locale:

SI units everywhere

ISO date and time

American English

24 hour clock

etc

I think Windows has "English International" locale or something

>> ISO date and time

Yes, but not always in my experience:

    # Default locale is en_GB.utf8
    
    > date  
    Fri  3 Jul 12:14:20 BST 2026
    
    > date +%x  
    03/07/26
    
    > LC_TIME="C.UTF-8" date   
    Fri Jul  3 12:14:29 BST 2026
    
    > LC_TIME="C.UTF-8" date +%x  
    07/03/26