Sponsorised links
This month
AppleScript: Unicode Support
AppleScript is now entirely Unicode-based. Comments and text constants in scripts may contain any Unicode characters, and all text processing is done in Unicode, so all characters are preserved correctly regardless of the user’s language preferences.
Pourquoi avoir développé IDNA au lieu d'utiliser directement l'Unicode dans le DNS ?
June 2008
FAQ xHTML/CSS - Charset Iso-8859-1, iso-8859-15, utf-8, lequel choisir ?
FAQ xHTML/CSS - Comment diagnostiquer un problème d'encodage
FAQ xHTML/CSS - Ma page/mon code source commence par  de quoi s'agit-il ?
Sponsorised links
May 2008
Strip accents [python] [string] [encoding] [unicode] [ascii] [accents]
// Strip accents from a string. For example, "Sigur Rós" => "Sigur Ros". def strip_accents(string): import unicodedata return unicodedata.normalize('NFKD', unicode(string)).encode('ASCII', 'ignore')
April 2008
Wikipédia:Unicode/Test
March 2008
Flip
January 2008
will recursively encode to utf-8 all values in a dictionnary
def encode_utf8(params): ''' will recursively encode to utf-8 all values in a dictionnary ''' res = dict() for k, v in params.items(): if type(v) is dict: res[k] = encode_utf8(v) else: res[k] = v.encode('utf-8') return res
Mapping of Unicode characters - Wikipedia, the free encyclopedia
December 2007
Ponctuations en typographie française
Page pour tester les règles de typographie française en interaction avec le support des caractères unicode en HTML.
Espace et ponctuation en français.
Nous récapitulerons les espaces typographiques qui doivent accompagner ces signes.
Pour résumer : Les codes existent en UTF-8. grrgneugneu. Il va falloir que je crée une page.
Mise à jour 30 minutes plus tard: Règles de typographie française en HTML
