(Created page with "{{Documentation}} <includeonly><onlyinclude><!--Replace all with nothing.--></onlyinclude></includeonly>") |
No edit summary |
||
| Line 1: | Line 1: | ||
{{Documentation}} | {{Documentation}} | ||
<includeonly><onlyinclude> | <includeonly><onlyinclude>{{#invoke: BaseConvert | convert | ||
| n={{{1}}} | |||
| base={{{2}}} | |||
}}</onlyinclude></includeonly> | |||
Revision as of 17:52, 21 December 2023
Template:Base16 template makes it easy to convert from decimal to hexadecimal.
Usage
It accepts one mandatory parameter, the decimal number to be converted to a hexadecimal. Decimals and fractions will be rounded down.
A optional parameter controls the display of a subscript:
- The number is, by default, formatted with a final subscript
16to display the base. - With
|hex, the base will display ashex. - Using
|noor|nonehides the subscript and forces the display of at least two hexadecimal digits (instead of just one for values lower than 16). - Use
|digitto show a single digit without the subscript and without the 0 prefix.
Return
To convert a number to a base 16:
{{Base16|0}}→ 0{{Base16|15}}→ 15{{Base16|3256}}→ 3256
To convert a number to a base hex:
{{Base16|0|hex}}→ 0{{Base16|15|hex}}→ 15{{Base16|3256|hex}}→ 3256
To display single digits:
{{Base16|0|digit}}→ 0{{Base16|10|digit}}→ 10{{Base16|15|digit}}→ 15
To convert an RGB color from decimal code to hex code:
{{Base16|255|no}}{{Base16|165|no}}{{Base16|0|no}}→ 2551650
- Not a number input
{{Base16|}}→{{Base16}}→ {{{1}}}{{Base16|foobar}}→ foobar{{Base16|A B}}→ A B
The documentation above was transcluded from Template:Base16/Documentation. [edit]
