What is &H14& in VBScript?

hex, numbers, vbscript

Solution

It's a number in hexadecimal. &H14& can be written in some programming languages as 0x14.

The value is used to represent the special folder "Fonts" .. more info

Problem

I found the following article : here about installing fonts on a Windows computer via a script. The author uses VBScript to do that, but I'd like to use Ruby/Python. There is a line in the script I don't understand : ``` Const FONTS = &H14& ``` What is that &H14&? Is it a number? How would I represent that in another language?

Original source