Difference between revisions of "Template:Hexadecimal/doc"

From blackwiki
Jump to navigation Jump to search
(precision about minimum number of digits for second parameter value "no" (or alias "none"))
imported>Ark25
(Interwiki: +ro)
Line 35: Line 35:
 
[[id:Templat:Hexadecimal]]
 
[[id:Templat:Hexadecimal]]
 
[[ja:Template:Hexadecimal]]
 
[[ja:Template:Hexadecimal]]
 +
[[ro:Format:Hexazecimal]]
 
[[ur:سانچہ:Hexadecimal]]
 
[[ur:سانچہ:Hexadecimal]]
 
</includeonly>
 
</includeonly>

Revision as of 13:48, 22 January 2012

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. Numbers greater than 268,435,455 or less than 0 will return an "N/A", 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).

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 convert an RGB color from decimal code to hex code:

{{Hexadecimal|255|no}}{{Hexadecimal|165|no}}{{Hexadecimal|0|no}} → FFA500

See also