No edit summary |
No edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
<includeonly>[[Category:Conversion Template]]</includeonly> | <includeonly>[[Category:Conversion Template]]</includeonly> | ||
{{Template|Base16}} template makes it easy to convert from decimal to {{wp|hexadecimal}}. | {{Template|Base16}} template makes it easy to convert from decimal to {{wp|hexadecimal}}. | ||
==Usage== | |||
It accepts one {{Parameter|mandatory}}, the decimal number to be converted to a hexadecimal. Decimals and fractions will be rounded down. | |||
A {{Parameter|optional}} controls the display of a subscript: | |||
* The number is, by default, formatted with a final subscript {{code|16}} to display the base. | |||
* With {{Code|<nowiki>|hex</nowiki>}}, the base will display as {{code|hex}}. | |||
* Using {{Code|<nowiki>|no</nowiki>}} or {{Code|<nowiki>|none</nowiki>}} hides the subscript and forces the display of at least two hexadecimal digits (instead of just one for values lower than 16). | |||
* Use {{Code|<nowiki>|digit</nowiki>}} to show a single digit without the subscript and without the 0 prefix. | |||
==Return== | |||
== | |||
To convert a number to a base 16: | To convert a number to a base 16: | ||
: | : {{Code|<nowiki>{{Base16|0}}</nowiki>}} → {{Base16|0}} | ||
: | : {{Code|<nowiki>{{Base16|15}}</nowiki>}} → {{Base16|15}} | ||
: | : {{Code|<nowiki>{{Base16|3256}}</nowiki>}} → {{Base16|3256}} | ||
To convert a number to a base hex: | To convert a number to a base hex: | ||
: | : {{Code|<nowiki>{{Base16|0|hex}}</nowiki>}} → {{Base16|0|hex}} | ||
: | : {{Code|<nowiki>{{Base16|15|hex}}</nowiki>}} → {{Base16|15|hex}} | ||
: | : {{Code|<nowiki>{{Base16|3256|hex}}</nowiki>}} → {{Base16|3256|hex}} | ||
To display single digits: | To display single digits: | ||
: | : {{Code|<nowiki>{{Base16|0|digit}}</nowiki>}} → {{Base16|0|digit}} | ||
: | : {{Code|<nowiki>{{Base16|10|digit}}</nowiki>}} → {{Base16|10|digit}} | ||
: | : {{Code|<nowiki>{{Base16|15|digit}}</nowiki>}} → {{Base16|15|digit}} | ||
To convert an | To convert an {{wp|RGB color}} from decimal code to {{wp|hex code}}: | ||
: | : {{Code|<nowiki>{{Base16|255|no}}{{Base16|165|no}}{{Base16|0|no}}</nowiki>}} → {{Base16|255|no}}{{Base16|165|no}}{{Base16|0|no}} | ||
;Not a number input | ;Not a number input | ||
: | : {{Code|<nowiki>{{Base16|}}</nowiki>}} → {{Base16|}} | ||
: | : {{Code|<nowiki>{{Base16}}</nowiki>}} → {{Base16}} | ||
: | : {{Code|<nowiki>{{Base16|foobar}}</nowiki>}} → {{Base16|foobar}} | ||
: | : {{Code|<nowiki>{{Base16|A B}}</nowiki>}} → {{Base16|A B}} | ||
Latest revision as of 11:54, 16 April 2024
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}}→ 016{{Base16|15}}→ F16{{Base16|3256}}→ CB816
To convert a number to a base hex:
{{Base16|0|hex}}→ 0hex{{Base16|15|hex}}→ Fhex{{Base16|3256|hex}}→ CB8hex
To display single digits:
{{Base16|0|digit}}→ 0{{Base16|10|digit}}→ A{{Base16|15|digit}}→ F
To convert an RGB color from decimal code to hex code:
{{Base16|255|no}}{{Base16|165|no}}{{Base16|0|no}}→ FFA500
- Not a number input
{{Base16|}}→{{Base16}}→ 016{{Base16|foobar}}→ foobar{{Base16|A B}}→ A B
