VOOZH about

URL: https://en.wikipedia.org/wiki/Template:Hexadecimal

⇱ Template:Hexadecimal - Wikipedia


Jump to content
From Wikipedia, the free encyclopedia

016

πŸ‘ Image
Template documentation
[view] [edit] [history] [purge]
πŸ‘ Image
This template uses 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}} β†’ 016
{{Hexadecimal|15}} β†’ F16
{{Hexadecimal|3256}} β†’ CB816

To convert a number to a base hex:

{{Hexadecimal|0|hex}} β†’ 0hex
{{Hexadecimal|15|hex}} β†’ Fhex
{{Hexadecimal|3256|hex}} β†’ CB8hex

To display single digits:

{{Hexadecimal|0|digit}} β†’ 0
{{Hexadecimal|10|digit}} β†’ A
{{Hexadecimal|15|digit}} β†’ F

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

{{Hexadecimal|255|no}}{{Hexadecimal|165|no}}{{Hexadecimal|0|no}} β†’ FFA500
Not a number input
{{Hexadecimal|}} β†’
{{Hexadecimal}} β†’ 016
{{Hexadecimal|foobar}} β†’ foobar
{{Hexadecimal|A B}} β†’ A B

See also