Basic - Hexadecimal literal

Hexadecimal integer constant, also known as base 16 constant. it is from combination of following hexadecimal digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a/A, b/B, c/C, d/D, e/E, f/F

hexadecimal literal

Description

 &HA12F

Output

Compatible programing languages:
Visual Basic .NET | FreeBASIC

Examples

Basic

Hexadecimal literal the possible of use:
x = &H1234       ' x = 4660
y = 4 * &Hff     ' y = 1020
if x>&Habc then
  y = x / &Ha    ' y = 466
end if

Basic

Other pieces of example codes:
&Hff mod 50
&Habcd and k
&Hff >= y
not&Habcd
&HAF
i * &HFF

You can find it in the following collections: constants
Languages: en hu cz sk