Difference between revisions of "Template:Hexadecimal"
imported>Toohool (don't add base notation if the input was non-numeric) |
imported>Frietjes (add safesubst:) |
||
| Line 1: | Line 1: | ||
| − | {{#invoke: BaseConvert | + | {{<includeonly>safesubst:</includeonly>#invoke: BaseConvert |
| convert | | convert | ||
| n={{{1|0}}} | | n={{{1|0}}} | ||
| base=16 | | base=16 | ||
| precision=0 | | precision=0 | ||
| − | | width={{#switch:{{{2}}}|no|none=2|#default=0}} | + | | width={{<includeonly>safesubst:</includeonly>#switch:{{{2}}}|no|none=2|#default=0}} |
| − | | suffix={{#switch:{{{2}}}|no|none|digit=|hex=<sub>hex</sub>|#default=<sub>16</sub>}} | + | | suffix={{<includeonly>safesubst:</includeonly>#switch:{{{2}}}|no|none|digit=|hex=<sub>hex</sub>|#default=<sub>16</sub>}} |
}}<noinclude> | }}<noinclude> | ||
{{documentation}} | {{documentation}} | ||
</noinclude> | </noinclude> | ||
Latest revision as of 13:42, 4 November 2019
016
| 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
{{Dec2hex}}
| The above documentation is transcluded from Template:Hexadecimal/doc. (edit | history) Editors can experiment in this template's sandbox (edit | diff) and testcases (edit) pages. Please add categories to the /doc subpage. Subpages of this template. |