**FUNCTION:** `Hex(number) / Oct(number)`
**Description**
Convertit un nombre en représentation hexadécimale/octale.
**Syntax**
`Hex(number) / Oct(number)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Hex(255)
WScript.Echo Oct(8)
« `
**Output :** `FF ; 10`