Template:Hexadecimal/doc

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search

Script error: No such module "Message box". Template:Lua This template makes it easy to convert from decimal to hexadecimal.

Usage

Use: {{Hexadecimal|x}} where x is the decimal number to be converted to a hexadecimal. Decimals and fractions will be rounded down. The number is, by default, formatted with a final subscript 16 to display the base. An optional second parameter of |hex will replace the base with "hex".

To opt out of the subscript, use a second parameter of |no (or equivalently |none), which also forces the display of at least two hexadecimal digits (instead of just one for values lower than 16).

To show a single digit, without the subscript and without the 0 prefix, set the second parameter to |digit.

Examples

To convert a number to a base 16:

{{Hexadecimal|0}}Script error: No such module "BaseConvert".
{{Hexadecimal|15}}Script error: No such module "BaseConvert".
{{Hexadecimal|3256}}Script error: No such module "BaseConvert".

To convert a number to a base hex:

{{Hexadecimal|0|hex}}Script error: No such module "BaseConvert".
{{Hexadecimal|15|hex}}Script error: No such module "BaseConvert".
{{Hexadecimal|3256|hex}}Script error: No such module "BaseConvert".

To display single digits:

{{Hexadecimal|0|digit}}Script error: No such module "BaseConvert".
{{Hexadecimal|10|digit}}Script error: No such module "BaseConvert".
{{Hexadecimal|15|digit}}Script error: No such module "BaseConvert".

To convert an RGB color from decimal code to hex code:

{{Hexadecimal|255|no}}{{Hexadecimal|165|no}}{{Hexadecimal|0|no}}Script error: No such module "BaseConvert".Script error: No such module "BaseConvert".Script error: No such module "BaseConvert".
Not a number input
{{Hexadecimal|}}Script error: No such module "BaseConvert".
{{Hexadecimal}}Script error: No such module "BaseConvert".
{{Hexadecimal|foobar}}Script error: No such module "BaseConvert".
{{Hexadecimal|A B}}Script error: No such module "BaseConvert".

See also

Template:Math templates